Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do you change the positon of a model?

Asked by
Gigaset39 111
1 year ago

I just realized that i cant move models,just parts, so i could ungrop all the 6 part and move them individualy, but i dont want to do that, soo...

How i move a Model?

i use this for parts:

for i = 1,50 do
        Robloxian.Position += Vector3.new(0,1,0)
        wait(0.001)
        end

what for models?

1 answer

Log in to vote
1
Answered by
Gigaset39 111
1 year ago
Edited 1 year ago

ok.. so i found out..

  for i = 1,50 do
        Robloxian:SetPrimaryPartCFrame(primaryPart.CFrame + Vector3.new(0,1,0))
        wait(0.001)
    end

i got the solution from: https://youtu.be/Pp14Qi1vi20

0
use PivotTo SetPrimaryPartCFrame is deprecated Puppynniko 1059 — 1y
Ad

Answer this question