Answers for "how to make a model rotate in roblox"

2

rotate modl roblox

--This will get rotated 90 degrees on X axis
Model:SetPrimaryPartCFrame(SpawnCFrame * CFrame.Angles(math.rad(90),0,0))
Posted by: Guest on September-11-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 "how to make a model rotate in roblox"

Browse Popular Code Answers by Language