# This is a Verse script for Prop Hunt # It runs when a player joins the game # This function runs when a player joins OnPlayerAdded := (player: Player) -> unit: # Give the player a random team # If the team is Prop, they hide # If the team is Hunter, they seek if player.GetTeam() == Team.Prop: # Hide the player as a prop # This is where Verse magic happens HidePlayerAsProp(player) else: # Give the hunter their weapon GiveHunterWeapon(player)