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

How to make a brick just rotate in circles?

Asked by 9 years ago

Just make it rotate in 1 place

2 answers

Log in to vote
0
Answered by 9 years ago

simple c-frame script that makes a brick rotate in one place, just forgot it

Ad
Log in to vote
0
Answered by
crut24 50
9 years ago
local brick = game.Workspace.Brick

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

Thats it. Its very Simple. Dont forget to Accept Answer. :D

Answer this question