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

Checkpoint Script broken?[Unsolved]

Asked by 11 years ago

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.

01function oa(object)
02local player = game.Players:playerFromCharacter(object)
03if player ~= nil then
04local ls = player.leaderstats
05local sl = game.Workspace:FindFirstChild(ls.Stage.Value)
06print("gah")
07object.Torso.CFrame = object.Torso.CFrame + Vector3.new(0,3,0)
08wait()
09object.Torso.CFrame = sl.CFrame + Vector3.new(0,3,0)
10end end
11 
12function oe(object)
13if object.className == "Player" then
14local ack = Instance.new("IntValue")
15ack.Name = "leaderstats"
View all 24 lines...

and this is the Script inside the Spawn:

01function ot(hit)
02if hit.Parent ~= nil then
03local player = game.Players:playerFromCharacter(hit.Parent)
04if player ~= nil then
05if player.leaderstats.Stage.Value == script.Parent.Name - 1 then
06local h = hit.Parent:FindFirstChild("Humanoid")
07if h ~= nil then
08if h.Health ~= 0 then
09player.leaderstats.Stage.Value = script.Parent.Name
10end end end end end end
11 
12script.Parent.Touched:connect(ot)

1 answer

Log in to vote
0
Answered by
istiyak 13
11 years ago

have you anchored the spawn because something like this happened to me

0
Yea my spawns are anchored. tempodoa 0 — 11y
0
And i was wondering why would you want to put a script on your checkpoint istiyak 13 — 11y
Ad

Answer this question