GRSLogics
GRSLogics
  • Видео 3
  • Просмотров 18 508
DONATING 10k TO A SMALL STREAMER ON ROBLOX PLS DONATE
I donated to @eurokeye
Keep the good work up my man
Просмотров: 61

Видео

How to use PBR Textures the right way in roblox Studio!
Просмотров 7 тыс.2 года назад
Hi, I hope my video helped you all.If you want to hire me or suggest anything hit me up in my Discord server! DC:discord.gg/XPeVCPvkMn Roblox Group:www.roblox.com/groups/15836304/magicians-studio Roblox Fan Group:www.roblox.com/groups/16043058/GRS-Gangmembers
How to make a Realitic First Person Camera with Bobble ROBLOX Studio
Просмотров 11 тыс.2 года назад
pastebin:pastebin.com/XRfgDB30#Lb3vCnqC Group:www.roblox.com/groups/16043058/GRS-Gangmembers Thanks for watching this Video and wish you the best luck with your project :) tags(Ignore): Roblox,Roblox Studio, Roblox Scripting, Tutorial, Roblox Tutorial, Roblox Developing, Developing, Lua, Scripting, Effect, Horror game Roblox. How to make a horror game on roblox, Realistic Camera Roblox, Roblox ...

Комментарии

  • @LEO-lk1gy
    @LEO-lk1gy 2 месяца назад

    ik im late but thats so nice of you!

  • @Vocal-Stone
    @Vocal-Stone 8 месяцев назад

    hey I have a question would you like to help me work on "The Rake 2" I have done some scripts like loading screen, death screen, other stuff and if you help me I would 100% say thanks to you on the game descriptions and tell ppl to go follow and sub to your channel :)

    • @GRSLogics
      @GRSLogics 8 месяцев назад

      add me on discord grscoms_11698

  • @cuzabi
    @cuzabi 9 месяцев назад

    Thx a lot! Very customizable as well which I love!

    • @GRSLogics
      @GRSLogics 9 месяцев назад

      No Problem gang

  • @limiz_YT
    @limiz_YT 10 месяцев назад

    can you make it so that in third person it stops bobbing

  • @minhnhatnguyen1976
    @minhnhatnguyen1976 Год назад

    --//by GRS// print("First Person Script by GRS") --//Vars local Intensity = 10 local xMagnitude = .5 local yMagnitude = .5 local plr = game:GetService("Players") local rs = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local player = plr.LocalPlayer local cam = workspace.CurrentCamera local char = player.Character or player.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") --//Setups player.CameraMaxZoomDistance = 0 player.CameraMinZoomDistance = 0 --//Functions function update() local currentTime = tick() if hum.MoveDirection.Magnitude > 0.5 then local x = math.cos(currentTime * Intensity) * xMagnitude local y = math.abs(math.sin(currentTime * Intensity)) * yMagnitude local bobble = Vector3.new(x,y, 0.5) hum.CameraOffset = hum.CameraOffset:lerp(bobble, .25) return end hum.CameraOffset *= .75 end --//Connections RunService.RenderStepped:Connect(update) --//by GRS// it doesnt work

  • @Greengyat3000
    @Greengyat3000 Год назад

    Thanks, have a nice day

  • @ChDvComeback
    @ChDvComeback Год назад

    Damnnn its a W

  • @Cupcake3
    @Cupcake3 Год назад

    it worked, thank you

  • @eurokeye
    @eurokeye Год назад

    Thanks so much for the 10k man I appreciate it so much! Hope you have a great rest of your day man!

    • @GRSLogics
      @GRSLogics Год назад

      No problem. Keep up the great work!

  • @doffyso
    @doffyso Год назад

    yo bro, can you make a vid how to fix firstperson body with camera bobble?

  • @moonpowerofficial
    @moonpowerofficial Год назад

    The effect is the same as another youtubers script did you copy it? It also didn't even do the effects like you said it would :(

    • @GRSLogics
      @GRSLogics Год назад

      No I did not copy from anyone.

  • @watermelonbtw
    @watermelonbtw Год назад

    Absolute legend! Thanks man!

  • @nejc5606
    @nejc5606 Год назад

    Thanks man, it worked! You're the only right one, that had the code right. You deserve a sub! <3

    • @GRSLogics
      @GRSLogics Год назад

      Np thank you for the Sub <3

  • @milosdev
    @milosdev Год назад

    ay is it possible to make the script to see our legs and body

    • @GRSLogics
      @GRSLogics Год назад

      It is...You want me to make a vid on that?

    • @henryaz_
      @henryaz_ 4 месяца назад

      @@GRSLogics idk if u still read these replies but yes that would be cool

  • @lemonbus.aep10
    @lemonbus.aep10 Год назад

    fake, didnt work

    • @GRSLogics
      @GRSLogics Год назад

      It does work you just have to follow the tutorial bro or copy the script on my pastebin

    • @AstroFrogYT
      @AstroFrogYT Год назад

      @@GRSLogics BRO IT DEFINETILY DOESN'T WORK I GRABBED IT FROM YOUR PASTEBIN EVEN AFTER making it myself and it doesn't work

  • @jaxon_ninja24
    @jaxon_ninja24 Год назад

    i'm having trouble with the script... is this right local Intensity = 10 local xMagnitude = .5 local yMagnitude = .5 local plr = game:GetService("Players") local rs = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local player = plr.LocalPlayer local cam = workspace.CurrentCamerca local char = player.Character or player.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") player.CameraMaxZoomDistance = 0 player.CameraMinZoomDistance = 0 function update() local currentTime = tick() if hum.MoveDirection.Magnitude > 0.5 then local x = math.cos(currentTime + Intensity) + xMagnitude local y = math.abs(math.sin(currentTime + Intensity)) + yMagnitude local bobble = Vector3.new(x,y. 0.5) <-- **IT SAYS THE 0.5 IS WRONG FOR SOME REASON** hum.CameraOffset = hum.CameraOffset:lerp(bobble, .25) return end hum.CameraOffset += .75 end RunService.RenderStepped:Connect(update)

    • @GRSLogics
      @GRSLogics Год назад

      Try this --//by GRS// print("First Person Script by GRS") --//Vars local Intensity = 10 local xMagnitude = .5 local yMagnitude = .5 local plr = game:GetService("Players") local rs = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local player = plr.LocalPlayer local cam = workspace.CurrentCamera local char = player.Character or player.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") --//Setups player.CameraMaxZoomDistance = 0 player.CameraMinZoomDistance = 0 --//Functions function update() local currentTime = tick() if hum.MoveDirection.Magnitude > 0.5 then local x = math.cos(currentTime * Intensity) * xMagnitude local y = math.abs(math.sin(currentTime * Intensity)) * yMagnitude local bobble = Vector3.new(x,y, 0.5) hum.CameraOffset = hum.CameraOffset:lerp(bobble, .25) return end hum.CameraOffset *= .75 end --//Connections RunService.RenderStepped:Connect(update) --//by GRS//

    • @jaxon_ninja24
      @jaxon_ninja24 Год назад

      @@GRSLogics thank you so much, I've already figured out what I need to do, and I added somethings and made the camera the way I wanted it to, but thanks and also, I shall be putting your credits in my script :D

    • @GRSLogics
      @GRSLogics Год назад

      @@jaxon_ninja24 Yw bro if you got any video suggestions you can write anything in the comments I am always looking for new projects and content.

    • @OrcaGuyreal
      @OrcaGuyreal Год назад

      @@GRSLogics is it okay if I dont add credits please? thanks sorry I just am trying to make a myth game and it would look really werid with you credited you know?

    • @Tony_Snell_Fan
      @Tony_Snell_Fan Год назад

      @@OrcaGuyreal players don't see credits in game

  • @GRSLogics
    @GRSLogics Год назад

    dang we got 2.5k views ty!

  • @realdashingg
    @realdashingg Год назад

    Ur actually a god ty homie

  • @MEMTTD3ROBLOX
    @MEMTTD3ROBLOX Год назад

    Pls Russian text

  • @Sand_the_Lazy_sand
    @Sand_the_Lazy_sand Год назад

    nice, but i also need the script where if youre idle, you also bobble, but very slowly.

  • @MoazAhmed-fz2yb
    @MoazAhmed-fz2yb Год назад

    yo dude used your work for robux XDDDD

  • @Freprepp
    @Freprepp Год назад

    thanks man it does work

  • @Ibxtro
    @Ibxtro Год назад

    thanks you're my man !

  • @_faan
    @_faan Год назад

    Doesnt work..

    • @GRSLogics
      @GRSLogics Год назад

      copy and paste from my pastebin and put a localscript in StarterCharacterScripts. I hope that helped

    • @KomedyKatAnimations
      @KomedyKatAnimations Год назад

      @@GRSLogics I did that and it still didn't work...

    • @Aaaaidkhelplolakajwjmem.
      @Aaaaidkhelplolakajwjmem. Год назад

      Hi people in the replies, I think ik what the problem is but idk how to explain it lol = try copy and pasting this? --//Vars local Intensity = 10 local xMagnitude = .5 local yMagnitude = .5 local plr = game:GetService("Players") local rs = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local player = plr.LocalPlayer local cam = workspace.CurrentCamera local char = player.Character or player.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") --//Setups player.CameraMaxZoomDistance = 0 player.CameraMinZoomDistance = 0 --//Functions function update() local currentTime = tick() if hum.MoveDirection.Magnitude > 0.5 then local x = math.cos(currentTime * Intensity) * xMagnitude local y = math.abs(math.sin(currentTime * Intensity)) * yMagnitude local bobble = Vector3.new(x,y, 0.5) hum.CameraOffset = hum.CameraOffset:lerp(bobble, .25) return end hum.CameraOffset *= .75 end --//Connections RunService.RenderStepped:Connect(update)

    • @GRSLogics
      @GRSLogics Год назад

      @@KomedyKatAnimations Well then idk

  • @47k_Goat
    @47k_Goat Год назад

    He never made one

  • @alygamer2286
    @alygamer2286 Год назад

    Please add a tutorial on how to make my own PBR texture.

  • @ambergravley114
    @ambergravley114 Год назад

    How Did He Make Another one of those things before the one?

    • @GRSLogics
      @GRSLogics Год назад

      by edeting the video? or what do you mean?

  • @фризи-ы
    @фризи-ы 2 года назад

    how to unlock camera?

    • @GRSLogics
      @GRSLogics 2 года назад

      Should i make a video on that?

    • @N1kieW
      @N1kieW Год назад

      @@GRSLogics kind of late since this video has been uploaded about a month ago, but it would really help if you made it third person

    • @EdionYT
      @EdionYT Год назад

      how do you fix it for if you die somehow@@GRSLogics

  • @ProjectNukeFR
    @ProjectNukeFR 2 года назад

    Nice vid man, keep it up!