#I dont know why this script dont working
1 messages · Page 1 of 1 (latest)
what is it meant to do
Are u using R15 or R6
R6
what are the parents of your script?
as far as I know you can't attach new motor6d elements to parents that already have one attached to them (In this case the Torso)
I might be wrong, it's been a long time since I did stuff with motor6ds but if the output is empty that might be the case
you should use FindFirstChild to avoid script errors if the part does not exist
FindFirstChild will just return nil and error the script if the part isn't present; what you're looking for is WaitForChild
yeah you’re right