However the ship I have needs a weld system for Vehicles. So it doesnt cause an issue with move abilities when driving the ship.
I need it to be:
• Group Rank Lock. • To Turn off and Turn on Weld. • Proximity if possible.
Anyone know how I can start this off?
I have a Group lock script I just need a section to weld a Base to the wheels that are identified as: RR, RL, FL & FR.
I think it would be a Weld constraint. But, I am not 100% sure.
If you have any videos, Guidance to provide it would help me so much. Thank you!
there is a property that is named “Part0” and “Part1”
its just like this:
local redpart = workspace.RedPart
local greenpart = workspace.GreenPart
local weld = Instance.new("Weld", workspace)
weld.Part0 = workspace.RedPart
weld.Part1 = workspace.GreenPart
Now even if the parts are unachored, they’ll just hold each other forever unless you break the weld. But there are some problems that you might wanna change the parts’ position to attach them together using a script.
Add a Weld to each part of the wheel which means that FR, FL, RR, RL have their own welds. Set each weld’s Part0 to the their parents. Set the Part1 to the name of the BasePart.