of     1   

foolishfrog
#215774009Tuesday, May 02, 2017 2:54 AM GMT

my script to rotate a tool while clicking dosn't work. here it is; script.parent.CanBeDropped = false --cant drop it local script.parent.rotation =["rotation"] if script.parent.tool.Activated = true then rotation = vector3.new(0,0,0) wait (.5) rotation = vector3.new(0,0,45) wait (.5) rotation = vector3.new(0,0,90) wait (.5) rotation = vector3.new(0,0,45) wait (.5) rotation = vector3.new(0,0,0) end
foolishfrog
#215776068Tuesday, May 02, 2017 3:22 AM GMT

ok h3ere's the new script: script.parent.CanBeDropped = false --cannot be droped script.parent.Handle.rotation = RotationT1 --seting stuff if script.parent.Activated then RotationT1 = Vector3.new(0,0,0) wait (.5) RotationT1 = Vector3.new (0,0,90) wait (.5) RotationT1 = Vector3.new (0,0,0) end
Wunder_Wulfe
#215776245Tuesday, May 02, 2017 3:24 AM GMT

tool.Grip
Wunder_Wulfe
#215776284Tuesday, May 02, 2017 3:25 AM GMT

and u r setting the variable TRotation, not the Rotation property of the object

    of     1