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
1 | while true do |
2 | script.Parent:SetPrimaryPartCFrame(script.Parent.Main) |
3 | wait( 0.5 ) |
4 | 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
1 | while true do |
2 | script.Parent:SetPrimaryPartCFrame(CFrame.new(script.Parent.Main.Position)) |
3 | wait( 0.5 ) |
4 | -- NOTE: MAKE SURE 'MAIN' IS NOT A MODEL |
5 | end |
OR:
1 | while true do |
2 | script.Parent:SetPrimaryPartCFrame(script.Parent.Main.CFrame) |
3 | wait( 0.5 ) |
4 | -- NOTE: MAKE SURE 'MAIN' IS NOT A MODEL |
5 | end |