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
01 | s = script.Parent |
02 |
03 | s.Humanoid.Died:connect ( function () |
04 | wait ( 0 ) |
05 | Instance.new( "part" ) |
06 | color( "Bright Red" ) |
07 | Formfactor( "Plate" ) |
08 | Transperency = 0 |
09 | Size = 1 , 0.4 , 1 |
10 | end ) |
01 | s = script.Parent |
02 |
03 | s.Humanoid.Died:connect ( function () |
04 | wait ( 0 ) |
05 | P = Instance.new( "part" ) |
06 | P.Color( "Bright Red" ) |
07 | P.Formfactor( "Plate" ) |
08 | P.Transperency = 0 |
09 | P.Size = 1 , 0.4 , 1 |
10 | end ) |
You need to make a name for the part you can just make a entirely new one and not have a new name.