RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Lights to flicker when nextbot is near like evade game"
-- local script local part = script.Parent local canFlicker = true local function flicker(otherPart) local partParent = otherPart.Parent local nextbot = partParent:FindFirstChildWhichIsA('NextBot') if nextbot and canFlicker then canFlicker = false part.Light.Enabled = false wait(1) part.Light.Enabled = true wait(1) canFlicker = true end end part.Touched:Connect(flicker)