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

How do I change only the Y value of a part's orientation?

Asked by 4 years ago

I have been trying to make so that only the Y value of a part's orientation would change, can someone please help me out?

1 answer

Log in to vote
0
Answered by 4 years ago

Hello Zeppelin0330,

I got my answer from this page: https://developer.roblox.com/en-us/api-reference/property/BasePart/Orientation

local part = script.Parent

local incr = 360/20

-- Rotate the part continually
while true do
    for deg = 0, 360, incr do
        -- Set only the Y axis rotation
        part.Rotation = Vector3.new(0, deg, 0)
        -- A better way to do this would be setting CFrame
        --part.CFrame = CFrame.new(part.Position) * CFrame.Angles(0, math.rad(deg), 0)
        wait()
    end
end

Hope I helped!

Ad

Answer this question