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

How do I add a rotating brick and it stays running?

Asked by 9 years ago

I tried one time I ran it and instead of rotating it went up.

2 answers

Log in to vote
1
Answered by
Tixy12 0
9 years ago
  1. This is not a requesting Website.

You could make a script and put this in it then put the script into the brick

while wait() do script.Parent.CFrame = script.Parent.CFrame * CFrame.fromEulerAnglesXYZ(0,0.1,0) end

Ad
Log in to vote
0
Answered by 9 years ago

I suggest you to look Here and Here That should teach you how to make it keep spinning(Anyways here is a script)

while true do
Part.CFrame = Part.CFrame.new(1, 1, 1)
wait(0.1)
end

Answer this question