RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Lights to flicker when monster is nearby"
-- put this script under the light you want to flicker local light = script.Parent local monster = game.Workspace.Monster local function onTouched(otherPart) if otherPart.Parent == monster then while true do light.Enabled = not light.Enabled wait(0.1) end end end light.Touched:Connect(onTouched)