1 | workspace [ 'Rasengan test dummy' ] .Humanoid.Touched:Connect( function (Rasengan) |
2 | if (Rasengan) ~ = nil then local Humanoid = Rasengan.Parent:FindFirstChild(“Humanoid”) or Rasengan.Parent.Parent:FindFirstChild(“Humanoid”) |
3 | if (Humanoid:IsA(“Humanoid”) and Humanoid) then |
4 | for i = 1 , 10 , 10 do |
5 | Humanoid:TakeDamage( 10 ) |
6 | end |
7 | end |
8 | end |
9 | end ) |
Your issue is being caused because you’re trying to use the method :TakeDamage()
on the Part you touched, yet the Part you thing you touched, isn’t a Humanoid
. When using.Touched
you use the arguments provided by the function, which is the part that touched.
This would be, what you gave it as a reference in the perimeters, ‘Rasengan
‘. This should then be written like so
01 | workspace [ “Rasengan test dummy” ] .Humanoid.Touched:Connect( function (Rasengan) |
02 | if (Rasengan) ~ = nil then |
03 | local Humanoid = Rasengan.Parent:FindFirstChild(“Humanoid”) or Rasengan.Parent.Parent:FindFirstChild(“Humanoid”) |
04 | if (Humanoid:IsA(“Humanoid”) and Humanoid) then |
05 | for i = 1 , 10 , 10 do |
06 | Humanoid:TakeDamage( 10 ) |
07 | end |
08 | end |
09 | end |
10 | end ) |
You also forgot a peramiter on the for loop, the third number is how much it does up
1 | script.Parent.Touched:Connect( function (hit) |
2 | Jbrick.Anchored = true |
3 | human 1 = hit.Parent --idk what this is for |
4 | human = hit.Parent:FindFirstChild( 'Humanoid' ) |
5 | if human then --checks if human is true |
6 | human:TakeDamage( 10 ) |
7 | print ( 'yes' ) |
8 | end |
9 | end ) |
small error ur doing hit.Parent:FindFirstChild("Humaoid") so it will be nil. i fixed it to be humanoid. a model can't take damage so a humanoid can take damage.
Simply just change
1 | Joshpart.Visible = true |
To
1 | Joshpart.Transparency = 1 |
and do the oposite to make it invisible :)
PlayerAdded is not an event of StarterPack, but an event of Players.