Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

why im i getting this error when im trying to damage to the dummy?

Asked by 6 years ago
Edited 6 years ago
1workspace['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)
0
What errors are you getting? Did you properly define Jbrick? joritochip 705 — 6y
0
yes chuba143 -3 — 6y
0
Please include the full script, as we do not know what Jbrick is defined as. joritochip 705 — 6y
0
yay HappyTimIsHim 652 — 6y
0
XD\ chuba143 -3 — 6y

4 answers

Log in to vote
0
Answered by
Ziffixture 6913 Moderation Voter Community Moderator
6 years ago
Edited 6 years ago

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

01workspace[“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
10end)

You also forgot a peramiter on the for loop, the third number is how much it does up

Ad
Log in to vote
3
Answered by 6 years ago
Edited 6 years ago
1script.Parent.Touched:Connect(function(hit)
2    Jbrick.Anchored = true
3    human1 = 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
9end)

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.

0
upvote and mark if it helped :) HappyTimIsHim 652 — 6y
0
lol true human HappyTimIsHim 652 — 6y
0
:/ HappyTimIsHim 652 — 6y
Log in to vote
2
Answered by 6 years ago

Simply just change

1Joshpart.Visible = true

To

1Joshpart.Transparency = 1

and do the oposite to make it invisible :)

0
Transparency `1` is completely invisible. EpicMetatableMoment 1444 — 6y
Log in to vote
1
Answered by 6 years ago

PlayerAdded is not an event of StarterPack, but an event of Players.

0
Also assuming that joshpart is a Part, visible is not a thing. The right thing to do would be joshpart.Transparency = 0 ScriptAbyss 10 — 6y

Answer this question