|
| 18 Apr 2016 07:38 PM |
I'm a beginner btw.
while true do
script.Parent.Parent.Part.Rotation = script.Parent.Rotation.new.Vector3(0,5,6)
wait (0.05)
end
I just want a part in Workspace to spin when I click play.
would it just be
script.Parent.Rotation = script.Parent.Rotation.new.Vector3(0,5,6)
wait (0.05)
end
-- because the script is inserted into the Part already?-- |
|
|
| Report Abuse |
|
|
| 18 Apr 2016 07:44 PM |
while true do script.Parent.Parent.Part.Rotation = script.Parent.Parent.Part.Rotation + Vector3.new(0,5,6) wait (0.05) end
|
|
|
| Report Abuse |
|
| |