Advertisement
MangoScripts

Script FOV Da Hood

Nov 25th, 2021
3,527
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Fov = Instance.new("TextButton")
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. Fov.Name = "Fov"
  14. Fov.Parent = ScreenGui
  15. Fov.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  16. Fov.BorderColor3 = Color3.fromRGB(0, 0, 0)
  17. Fov.BorderSizePixel = 5
  18. Fov.LayoutOrder = 2
  19. Fov.Position = UDim2.new(0.93617022, 0, 0.971779168, 0)
  20. Fov.Size = UDim2.new(0, 84, 0, 23)
  21. Fov.SizeConstraint = Enum.SizeConstraint.RelativeXX
  22. Fov.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  23. Fov.Font = Enum.Font.SourceSans
  24. Fov.Text = "Activate FOV Script"
  25. Fov.TextColor3 = Color3.fromRGB(68, 255, 65)
  26. Fov.TextScaled = true
  27. Fov.TextSize = 14.000
  28. Fov.TextWrapped = true
  29. Fov.MouseButton1Down:connect(function()
  30. workspace.CurrentCamera.FieldOfView = 120
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement