#how do i damage a player using hitboxes using :GetPartsInPart (i know i did the wrong capitalisatio)

5 messages · Page 1 of 1 (latest)

drifting agate
#

like after a player uses an attack, any player inside thepart takes damage, is that posssible without putting part:Touched scripts in the player?

verbal finch
#

You will loop through these parts and chekc if they belong to a players character:


if Part.Parent:FindFirstChildWhichIsA("Humanoid") then 
--logic here
end```
drifting agate
#

thanks