RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a script when the player touched an part a timer is started for 1 minutes"
-- local script local part = script.Parent local timer = 0 local function onTouch(otherPart) timer = 60 end part.Touched:Connect(onTouch) while true do wait(1) if timer > 0 then timer = timer - 1 end end