I am having an issue when you throw the object, it clones and when it hits a player, it is supposed to damage them. It is a .Touched() function. Any Help?
The Code:
01 | local part = script.Parent |
02 |
03 | local damage = 10 |
04 |
05 | part.Touched:Connect( function (hit) |
06 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
07 | local humanoid = hit.Parent:FindFirstChild( "Humanoid" ) |
08 | humanoid:TakeDamage(damage) |
09 | end |
10 | end ) |
I was using the clone script through the client, so I used a remote event and switched scripts over. I used the client for animations and I used the remote event to get the mouse position.