10-15-2010, 12:06 AM
Events are now working (currently only Collided). This is how you use them:
This will make the part the script is in a color changer.
When a script is removed, any events created from it are deactivated.
I will work on tools tomorrow.
Code:
link(script.Parent.Collided, function(h) h.Color = Color(math.random(0, 255), math.random(0, 255), math.random(0, 255)) end)
This will make the part the script is in a color changer.
When a script is removed, any events created from it are deactivated.
I will work on tools tomorrow.