Advertisement
XiiPanda

Full Bright Roblox Script 2021

Aug 10th, 2021
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. -- FULLBRIGHT by ricey#7090
  2. pcall(function()
  3. local lighting = game:GetService("Lighting");
  4. lighting.Ambient = Color3.fromRGB(255, 255, 255);
  5. lighting.Brightness = 1;
  6. lighting.FogEnd = 1e10;
  7. for i, v in pairs(lighting:GetDescendants()) do
  8. if v:IsA("BloomEffect") or v:IsA("BlurEffect") or v:IsA("ColorCorrectionEffect") or v:IsA("SunRaysEffect") then
  9. v.Enabled = false;
  10. end;
  11. end;
  12. lighting.Changed:Connect(function()
  13. lighting.Ambient = Color3.fromRGB(255, 255, 255);
  14. lighting.Brightness = 1;
  15. lighting.FogEnd = 1e10;
  16. end);
  17. spawn(function()
  18. local character = game:GetService("Players").LocalPlayer.Character;
  19. while wait() do
  20. repeat wait() until character ~= nil;
  21. if not character.HumanoidRootPart:FindFirstChildWhichIsA("PointLight") then
  22. local headlight = Instance.new("PointLight", character.HumanoidRootPart);
  23. headlight.Brightness = 1;
  24. headlight.Range = 60;
  25. end;
  26. end;
  27. end);
  28. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement