RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Lights to flicker when monster is nearby"
-- local script local part = script.Parent local monster = game.Workspace.Monster local function onTouched(otherPart) if otherPart == monster then while true do part.Light.Enabled = not part.Light.Enabled wait(0.5) end end end part.Touched:Connect(onTouched)