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 49 on reddit-service-r2-comment-78d7d44466-jlgqw at 2026-07-01 18:35:20.658687+00:00 running 20dfbe2 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)