I have problem, i don't know how to make script on joint breaking and rotation. I need script, which activate rotation, becouse it can only one time do it. Can someone help me?
Thanks, karolus1.
The easiest way to create joints between parts is with the :MakeJoints()
function. It is used on a model, so a script inside the model would look like this:
local model=script.Parent --define our model model:MakeJoints() --create joints for the model
I hope this helps!
For more on joints, click here.