Hi,
Today I have the question, How to make a weld part that doesn’t rotate follow another part
like PartA are rotating and welding with PartB I want PartB to don’t rotating follow PartA
Used this script to rotate partA
local x = 0
while true do
script.Parent.CFrame = script.Parent .CFrame * CFrame.Angles(0, math.rad(x), 0)
x = x + 1
wait()
end
Thanks in advance.