I’m trying to change the rotation of my Baseplate through a script. How would I go about doing that?
Example of what I’m trying to do:
local BP = game.Workspace.Baseplate
wait(30)
BP.Orientation.X = 50
I’m trying to change the rotation of my Baseplate through a script. How would I go about doing that?
Example of what I’m trying to do:
local BP = game.Workspace.Baseplate
wait(30)
BP.Orientation.X = 50
Try
local BP = game.Workspace.Baseplate
wait(30)
BP.Orientation = Vector3.new(50,BP.Orientation.Y,BP.Orientation.Z)
Explanation: You can’t just set one part of the orientation. You can change the orientation all at once only.