Answers for "rotate object around a point roblox"

Lua
3

how to make a part rotate roblox

local part = game.Workspace.Part

while true do wait(1)
	part.CFrame = CFrame.Angles(0,math.rad(5),0)
end
Posted by: Guest on November-26-2020
0

rotate object roblox

local rotatedCFrame = CFrame.Angles(0, math.rad(70), math.rad(20))
redBlock.CFrame = redBlock.CFrame:ToWorldSpace(rotatedCFrame)
Posted by: Guest on November-18-2021

Code answers related to "rotate object around a point roblox"

Browse Popular Code Answers by Language