Advertisement
Guest User

FOV CHANGE SCRIPT - ROBLOX

a guest
Jul 9th, 2019
13,365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.27 KB | None | 0 0
  1. --[[----------------------------------------------------------------------------------------------------------------------------
  2.    
  3.         FOV CHANGE SCRIPT
  4.    
  5.         Made by NoahNation ( NoahNation#5582 )
  6.         Check Out My YouTube Channel: bit.ly/NoahNationYT
  7.  
  8. --]]----------------------------------------------------------------------------------------------------------------------------
  9.  
  10.  
  11.  
  12. --[ KeyBinds ]------------------------------------------------------------------------------------------------------------------
  13. local FOV-ZoomOut = "I" -- Makes FOV zoom out // You can change I to whatever you want. Just DONT DELETE THE QUOTES!!!
  14. local FOV-ZoomIn = "O" -- Makes FOV zoom in // You can change O to whatever you want. Just DONT DELETE THE QUOTES!!!
  15. --------------------------------------------------------------------------------------------------------------------------------
  16. --[[  !!!WARNING!!! DO NOT DELETE THE QUOTES ABOVE!!!!!!!!!  ]]-----------------------------------------------------------------
  17.  
  18.  
  19.  
  20. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k)
  21.     if k == key1 then
  22.         game.workspace.CurrentCamera.FieldOfView = game.workspace.CurrentCamera.FieldOfView + 5
  23.     elseif k == key2 then
  24.         game.workspace.CurrentCamera.FieldOfView = game.workspace.CurrentCamera.FieldOfView - 5
  25.     end
  26. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement