Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[----------------------------------------------------------------------------------------------------------------------------
- FOV CHANGE SCRIPT
- Made by NoahNation ( NoahNation#5582 )
- Check Out My YouTube Channel: bit.ly/NoahNationYT
- --]]----------------------------------------------------------------------------------------------------------------------------
- --[ KeyBinds ]------------------------------------------------------------------------------------------------------------------
- local FOV-ZoomOut = "I" -- Makes FOV zoom out // You can change I to whatever you want. Just DONT DELETE THE QUOTES!!!
- local FOV-ZoomIn = "O" -- Makes FOV zoom in // You can change O to whatever you want. Just DONT DELETE THE QUOTES!!!
- --------------------------------------------------------------------------------------------------------------------------------
- --[[ !!!WARNING!!! DO NOT DELETE THE QUOTES ABOVE!!!!!!!!! ]]-----------------------------------------------------------------
- game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k)
- if k == key1 then
- game.workspace.CurrentCamera.FieldOfView = game.workspace.CurrentCamera.FieldOfView + 5
- elseif k == key2 then
- game.workspace.CurrentCamera.FieldOfView = game.workspace.CurrentCamera.FieldOfView - 5
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement