of     1   

Penquin113cp
#121779856Tuesday, December 31, 2013 3:32 PM GMT

I'm new to scripting. How do I make my script repeat and not end? The script is supposed to change color and stay changing color when touched by the ROBLOXian. Here the script: function touch() script.Parent.BrickColor=BrickColor.Random() wait(.1) end script.Parent.Touched:connect(touch)
FriendlyBiscuit
#121780565Tuesday, December 31, 2013 3:41 PM GMT

Go to scripting helpers!
RA2lover
#121783908Tuesday, December 31, 2013 4:22 PM GMT

loops. oh, and you might also want to disconnect the event to prevent netcode-induced slowdowns.

    of     1