Checkpoint Script broken?[Unsolved]
Can someone help me, i'm not sure if there is anything wrong with it but I have a checkpoint script but at some point if you play it respawn, you respawn in mid air then die then respawn at your Checkpoint.
02 | local player = game.Players:playerFromCharacter(object) |
04 | local ls = player.leaderstats |
05 | local sl = game.Workspace:FindFirstChild(ls.Stage.Value) |
07 | object.Torso.CFrame = object.Torso.CFrame + Vector 3. new( 0 , 3 , 0 ) |
09 | object.Torso.CFrame = sl.CFrame + Vector 3. new( 0 , 3 , 0 ) |
13 | if object.className = = "Player" then |
14 | local ack = Instance.new( "IntValue" ) |
15 | ack.Name = "leaderstats" |
16 | local ack 2 = Instance.new( "IntValue" ) |
23 | game.Players.ChildAdded:connect(oe) |
24 | game.Workspace.ChildAdded:connect(oa) |
and this is the Script inside the Spawn:
02 | if hit.Parent ~ = nil then |
03 | local player = game.Players:playerFromCharacter(hit.Parent) |
05 | if player.leaderstats.Stage.Value = = script.Parent.Name - 1 then |
06 | local h = hit.Parent:FindFirstChild( "Humanoid" ) |
09 | player.leaderstats.Stage.Value = script.Parent.Name |
10 | end end end end end end |
12 | script.Parent.Touched:connect(ot) |