I wrote this script and put it under startergui so that the player has the blur effect whenever they join the game, it’s not working! I am super rusty and am trying to re-learn the fundamentals, anyone think they could help? LP = game.Players.LocalPlayer game.Players.PlayerAdded:Connect(function() game.Lighting.MenuBlur.Enabled = true end)
You don’t need to have game.Players.PlayerAdded:Connect(function() if the local script is in the Screen Gui, it won’t load because the player is already added by the time it gets put into the PlayerGui.
A better handle would simply be
game:GetService("Lighting").MenuBlur.Enabled = true
1 Like
oh snap, I forgot that it worked that way
thanks a ton for the help!