Works in studio, but not in-game, help?
02 | local h = part.Parent:findFirstChild( "Humanoid" ) |
06 | local a = Instance.new( "Part" ) |
07 | a.Parent = game.Workspace |
08 | a.CFrame = h.Parent.Torso.CFrame+Vector 3. new( 0 , 1 , 0 ) |
10 | a.Size = Vector 3. new( 5 , 7 , 5 ) |
12 | a.BrickColor = BrickColor.Blue() |
15 | a.TopSurface = "Smooth" |
16 | a.BottomSurface = "Smooth" |
17 | game.Players.LocalPlayer.Character.Humanoid.Changed:connect( function (jumpy) if jumpy = = "Jump" then game.Players.LocalPlayer.Character.Humanoid.Jump = false end end |
18 | )h.Parent.Torso.Anchored = false |
21 | h.Health = h.Health - 1 |
22 | h.Parent.Health.Disabled = true |
31 | script.Parent.Touched:connect(kill) |
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?