hello everyone this is my first post i need help with it. i have been doing a obby game so i tried to create a spinning killbrick thats is not collidable the problem is that when i make it non collidable it doesnt kill anymore. what should i do? i have been trying to fix this without success. here is the script in case you need it. script:
1 | script.Parent.Touched:connect( function (hit) |
2 | if hit and hit.Parent and hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | hit.Parent.TakeDamage = - 3 |
4 | end |
5 | end ) |
The problem with that was TakeDamage()
was used incorrectly. Also as a side-note, :connect
is deprecated to please remember to use :Connect
. Additionally, you should be formatting your code correctly. Here is a working damage script:
1 | local part = script.Parent |
2 | part.Touched:Connect( function (hit) |
3 | if game.Players:GetPlayerFromCharacter(hit.Parent) then |
4 | local hum = hit.Parent:FindFirstChild( "Humanoid" ) |
5 | hum.Health = hum.Health - 3 |
6 | end |
7 | end ) |
I believe this would be the answer:
1 | script.Parent.Touched:connect( function (hit) |
2 | if hit and hit:FindFirstAncestorOfClass( 'Model' ) then |
3 | local Model = hit:FindFirstAncestorOfClass( 'Model' ) |
4 | Model:WaitForChild( 'Humanoid' ):TakeDamage(- 3 ) |
5 | end |
6 | end ) |
but if you want it unformatted for easier copying:
script.Parent.Touched:connect(function(hit) if hit and hit:FindFirstAncestorOfClass('Model') then local Model = hit:FindFirstAncestorOfClass('Model') Model:WaitForChild('Humanoid'):TakeDamage(-3) end end)
Here's a damage script, Oh and in the future you can click the blue lua button when writing a post to highlight your code
1 | local Damage = 100 |
2 | script.Parent.Touched:Connect( function (hit) |
3 | if hit.Parent:FindFirstChild( 'Humanoid' ) then |
4 | hit.Parent.Humanoid:TakeDamage(Damage) |
5 | end |
6 | end ) |