📜  如何使零件旋转 roblox - Lua 代码示例

📅  最后修改于: 2022-03-11 14:54:56.092000             🧑  作者: Mango

代码示例1
local part = game.Workspace.Part

while true do wait(1)
    part.CFrame = CFrame.Angles(0,math.rad(5),0)
end