How can i make a Death animation when you die your body/character will turn bue and then disapeared? i really need help for helpingg scripters HELP ME PLEASE!?
Now as I belive, There is no way to sort of 'delay' the death instance, But one possible option is to turn of CharacterAutoLoads:
http://wiki.roblox.com/index.php?title=API:Class/Players/CharacterAutoLoads
Then make the player wait until respawn, while that wait is happening you can insert a body figure (of that player) and play the animation of them dying. Then they respawn when the animation is done.
(This isnt a real answer) this is the script i made HunGry Jaffer function onTouched(part) local h = part.Parent:findFirstChild("Humanoid") if h ~= nil then wait(0.001) h.Health = 0 end end
script.Parent.Touched:connect(onTouched) wait(0) game.Player.Character.RightShoulder("BrickColor Blue") game.Player.Character.LeftShoulder("BrickColor Blue") game.Player.Character.LeftHip("BrickColor Blue") game.Player.Character.RightHip("BrickColor Blue")