Change Hero Option

This may be a little vauge, but how would I add an option to change heroes without having to restart the game mode.

Like go to assemble heroes, but without restarting, or like where if you press a button you can switch heroes without being in a spawn room?

Here you go:

rule("Change Heroes")
{
	event
	{
		Ongoing - Each Player;
		All;
		All;
	}

	conditions
	{
		Is Button Held(Event Player, Button(Interact)) == True;
	}

	actions
	{
		Set Player Allowed Heroes(Event Player, Filtered Array(All Heroes, Current Array Element != Hero Of(Event Player)));
		Reset Player Hero Availability(Event Player);
	}
}

You can change the trigger to any button or location, or whatever you want. This makes the allowed hero list everything except the hero you’re on, which deselects your hero, forcing you into the hero select screen. Now you can change heroes whenever you want on the Workshop maps.