Advertisement
pa1nx9

Fireteam REMOVE SUPPRESSED VISION & FULL BRIGHT

Nov 12th, 2021
490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. game:GetService("Players")[game.Players.LocalPlayer.Name].PlayerGui.FX.suppress1.Visible = false
  2. game:GetService("Players")[game.Players.LocalPlayer.Name].PlayerGui.FX.suppress2.Visible = false
  3.  
  4. local Light = game:GetService("Lighting")
  5.  
  6. function dofullbright()
  7. Light.Ambient = Color3.new(1, 1, 1)
  8. Light.ColorShift_Bottom = Color3.new(1, 1, 1)
  9. Light.ColorShift_Top = Color3.new(1, 1, 1)
  10. end
  11.  
  12. dofullbright()
  13.  
  14. Light.LightingChanged:Connect(dofullbright)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement