Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

did I place my debounce on the wrong line? I know I did...

Asked by
0msh 333 Moderation Voter
6 years ago
local d = false
script.Parent.MouseButton1Down:Connect(function()
    local h = script.Parent.Parent.Parent.Parent.Parent.Character:FindFirstChild("Torso")
    local s = game.Workspace.ToSpawn
if d == false then
    d = true    
    h.CFrame = s.CFrame
    for i = 30,0,-1 do
        script.Parent.Text = i
        wait(1)
        if i >= 0 then
            script.Parent.Text = "Teleport to Spawn"
            d = false
        end
    end
    end
end)

Answer this question