Answered by
7 years ago Edited 7 years ago
Let's say your model Curtain is in workspace to move it up you would multiply it's CFrame by a new CFrame and set it's PrimaryPart
Make sure you click the model and set the primary part or use a script to set it like this
1 | workspace.Curtain.PrimaryPart = workspace.Curtain.INSERT PART NAME HERE |
2 | workspace.Curtain:SetPrimaryPartCFrame(workspace.Curtain.PrimaryPart.CFrame * CFrame.new( 0 , 5 , 0 )) |
now to make it smooth and repeat you'd do this
2 | workspace.Curtain:SetPrimaryPartCFrame(workspace.Curtain.PrimaryPart.CFrame * CFrame.new( 0 , 0.1 , 0 )) |
Edit - Edited to work for models