|
while true do
script.Parent.Rotation = math.random,math.random,math.random
wait(0.001)
end
It is a continuous loop,runs at 0.001 seconds,and it is supposed to change the rotation to different numbers at that speed.
It is not working,what am I doing wrong?
~And I pocketed the luck on the way out,any questions?~ |
|
|
Is this place dead or what?
~And I pocketed the luck on the way out,any questions?~ |
|
|
math.random() requires parenthesis and parameters, an example would be,
math.random(1,10)
As for rotation, you would use Vector3.
An example would be,
game.Workspace.Part.Rotation = Vector3.new(math.random(),math.random(),math.random()) |
|
|
I tried that it did not work.
~And I pocketed the luck on the way out,any questions?~ |
|
|
Could you show me how you modified the script?. |
|
|
while true do
script.Parent.Rotation.Vector3.new(math.random(),math.random(),math.random())
wait(0.001)
end
~And I pocketed the luck on the way out,any questions?~ |
|
|
script.Parent.Rotation =Vector3.new(math.random(MinimumNumberHere,MaximumNumberHere),math.random(MinimumNumberHere,MaximumNumberHere),math.random(MinimumNumberHere,MaximumNumberHere)) |
|
nomer888Join Date: 2010-02-13 Post Count: 551 |
@Anony
math.random() doesn't require parameters.
while wait(.001) do
script.Parent.Rotation = Vector3.new(math.random(), math.random(), math.random())
end |
|
|
Ok,so I have to set the minimum and maximum amounts?
~And I pocketed the luck on the way out,any questions?~ |
|
|
Ok now I'm confused.
Oh and none of this is working.
~And I pocketed the luck on the way out,any questions?~ |
|
|
"Rotation" is a property, Vector3 utilizes XYZ, an example would be,
game.Workspace.Part.Rotation = Vector3.new(X,Y,Z) |
|