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

Works in studio, but not in-game, help?

Asked by 10 years ago
01function kill(part)
02    local h = part.Parent:findFirstChild("Humanoid")
03    if h then
04        wait(.1)
05        h.WalkSpeed = 0
06        local a = Instance.new("Part")
07        a.Parent = game.Workspace
08        a.CFrame = h.Parent.Torso.CFrame+Vector3.new(0,1,0)
09        a.CanCollide = false
10        a.Size = Vector3.new(5,7,5)
11        a.Anchored = true
12        a.BrickColor = BrickColor.Blue()
13        a.Transparency = .5
14        a.Reflectance = .5
15        a.TopSurface = "Smooth"
View all 31 lines...

When you touch it, it is supposed to insert a new part, that looks like ice and slowly kill you. It does everything in-game just not the killing part, which means the player can not move until he/she resets. Help? Also when you die, it inserts new parts... how do I prevent that from happening?

0
I made it a local script, but it now doesn't work at all Senor_Chung 210 — 10y

3 answers

Log in to vote
0
Answered by 10 years ago

If you're not already, make sure this is in a LocalScript, it's accessing the LocalPlayer.

Ad
Log in to vote
0
Answered by 10 years ago

Pretty much what he teamkilled said; In studio you are both Client and Server, unlike in-game.

Log in to vote
0
Answered by
Gamenew09 180
10 years ago

Replace game.Players.LocalPlayer.Character.Humanoid with h.

Answer this question