So, working on a build, and I want it to be really nice. Problem with that is eventing can get complicated.
Here's what I have
BTW: Var Player is preset as a player variable
And also TEEvents is short hand for ToggleEnabledEvents
_____________________________ _____________________________
[Ticked] ()OnPlayerTouch Self IfVar (Player == 1)
[Ticked] ()OnVarTrue Self SetColor (Red)
[Ticked] (5000)On Var True Self SetColor (Black)
[Ticked] ()OnVarFalse Self TEEvents (0 1 2 3 4 5 6 7)
[Unticked]()OnPlayerTouch Self IfVar (Player == 2)
[Unticked]()OnVarTrue Self SetColor (Blue)
[Unticked](5000)OnVarTrue Self SetColor (Black)
[Unticked]()OnVarFalse Self TEEvents (0 1 2 3 4 5 6 7)