using { /Fortnite.com/Devices } # This is our main script. It runs when the game starts. OnStart: callable () = { # 1. Get a reference to the Prop O' Matic Manager device. # We assume you named your device 'PropManager' in the editor. manager := PropOmaticManagerDevice # 2. Turn ON the "Props Remaining" counter on the HUD. # This is like turning on the storm timer display. manager.SetShowPropsRemaining(true) # 3. Turn ON the "Ping Cooldown" indicator. # This lets seekers know when they can use their spy ability again. manager.SetShowPropPingCooldown(true) }