Hello I am now wroking on a blood script and this is waht I have so far but nothing is happening when I die. I have the script so that the local script is inserted into the player so all I need is help with this script. Here is waht I have so far
s = script.Parent s.Humanoid.Died:connect (function () wait (0) Instance.new("part") color("Bright Red") Formfactor("Plate") Transperency = 0 Size = 1,0.4,1 end)
s = script.Parent s.Humanoid.Died:connect (function () wait (0) P = Instance.new("part") P.Color("Bright Red") P.Formfactor("Plate") P.Transperency = 0 P.Size = 1,0.4,1 end)
You need to make a name for the part you can just make a entirely new one and not have a new name.