#script to delete joints not working

8 messages · Page 1 of 1 (latest)

ocean pulsar
#

i made a script that is supposed to break joints when touching other blocks, but it doesn’t work i need some help please

function onTouched(hit)
    if 
        hit.Parent:FindFirstChild("Humanoid") then
        return
    end
    hit:BreakJoints()
end```

i need to remove joints when touched, but not affect players
next remnant
#

u aint calling the function

golden escarpBOT
#

studio** You are now Level 14! **studio

ocean pulsar
next remnant
#

Call the function

#
onTouched()
#

At the end of the code

#

After end