of     1   

TheChangerDB
#141270545Wednesday, July 23, 2014 1:36 PM GMT

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?~
TheChangerDB
#141270803Wednesday, July 23, 2014 1:40 PM GMT

Is this place dead or what? ~And I pocketed the luck on the way out,any questions?~
AnonyAnonymous
#141270993Wednesday, July 23, 2014 1:43 PM GMT

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())
TheChangerDB
#141271138Wednesday, July 23, 2014 1:45 PM GMT

I tried that it did not work. ~And I pocketed the luck on the way out,any questions?~
AnonyAnonymous
#141271238Wednesday, July 23, 2014 1:46 PM GMT

Could you show me how you modified the script?.
TheChangerDB
#141271289Wednesday, July 23, 2014 1:47 PM GMT

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?~
AnonyAnonymous
#141271387Wednesday, July 23, 2014 1:49 PM GMT

script.Parent.Rotation =Vector3.new(math.random(MinimumNumberHere,MaximumNumberHere),math.random(MinimumNumberHere,MaximumNumberHere),math.random(MinimumNumberHere,MaximumNumberHere))
nomer888
#141271450Wednesday, July 23, 2014 1:50 PM GMT

@Anony math.random() doesn't require parameters. while wait(.001) do script.Parent.Rotation = Vector3.new(math.random(), math.random(), math.random()) end
TheChangerDB
#141271473Wednesday, July 23, 2014 1:50 PM GMT

Ok,so I have to set the minimum and maximum amounts? ~And I pocketed the luck on the way out,any questions?~
TheChangerDB
#141271503Wednesday, July 23, 2014 1:51 PM GMT

Ok now I'm confused. Oh and none of this is working. ~And I pocketed the luck on the way out,any questions?~
AnonyAnonymous
#141272037Wednesday, July 23, 2014 1:58 PM GMT

"Rotation" is a property, Vector3 utilizes XYZ, an example would be, game.Workspace.Part.Rotation = Vector3.new(X,Y,Z)

    of     1