📜  如何在 roblox 中制作旋转块 - 无论代码示例

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

代码示例1
local Part = script.Parent

local C = CFrame.Angles(0,1,0)

while true do
  wait(0.01)
  Part.CFrame = Part.CFrame * C
end