so i am trying to change a part position randomly and i am trying to set a PrimaryCFrame to move a model here is my code
while true do script.Parent:SetPrimaryPartCFrame(script.Parent.Main) wait(0.5) end
any help given is appreciated
well, the :SetPrimaryPartCFrame() needs a CFrame to set the model's CFrame, so either make a CFrame.new() with the parts position or make the set primary part cframe to the parts cframe, e.g
while true do script.Parent:SetPrimaryPartCFrame(CFrame.new(script.Parent.Main.Position)) wait(0.5) -- NOTE: MAKE SURE 'MAIN' IS NOT A MODEL end
OR:
while true do script.Parent:SetPrimaryPartCFrame(script.Parent.Main.CFrame) wait(0.5) -- NOTE: MAKE SURE 'MAIN' IS NOT A MODEL end