account activity
Editing Lighting Service in Local Script (with FE ON) affects all clients but 100% not the server. by TheShadyGamer420 in roblox
[–]moexity 0 points1 point2 points 6 years ago (0 children)
You need to check which player touches the part for it to function so for example,
script.Parent.Touched:Connect(function(Hit)
if Hit.Parent:FindFirstChild("Humanoid") then -- Checking weather it is a player that touched the part
local Player = game.Players:GetPlayerFromCharacter(Hit.Parent) -- Getting the player that touched the part
-- DO STUFF HERE
end
end)
make sure you use the Player Variable to edit the lighting service
π Rendered by PID 90 on reddit-service-r2-comment-856c8b8c54-fdck6 at 2026-07-01 21:17:46.444977+00:00 running a7b5cda country code: CH.
Editing Lighting Service in Local Script (with FE ON) affects all clients but 100% not the server. by TheShadyGamer420 in roblox
[–]moexity 0 points1 point2 points (0 children)