The Loot Goblin’s Guide to Gold: Building an Economy in UEFN
The Loot Goblin’s Guide to Gold: Building an Economy in UEFN
Stop giving away legendary loot for free. If you’ve ever built an island where players just pick up whatever they want without paying a price, you haven’t built a game—you’ve built a warehouse. It’s boring. It’s chaotic. And worst of all, it’s free.
In this tutorial, we’re going to turn your island into a marketplace. We’ll use Gold Items (the in-game currency) to gatekeep powerful weapons, trap doors, and healing items behind paywalls. You’ll learn how to register gold as currency, set up vending machines, and make sure players actually have to work (or loot) for that high-tier gear. No coding required, just some strategic placement and a little bit of greed.
What You'll Learn
- What Gold Items are: The universal currency of Fortnite Creative.
- Registering Currency: How to tell a device, "Hey, this costs 100 gold."
- Spawning Currency: How to let players earn gold so they don’t starve.
- The Paywall: Using Conditional Buttons and Vending Machines to gatekeep loot.
How It Works
Think of Gold Items like the Storm in Creative mode: they are a global system that tracks value across your entire island. But instead of shrinking the map, they shrink your wallet.
1. The Concept: Currency as a Key
In most games, you see a number in the top right corner that goes up when you kill enemies. In Fortnite Creative, that number is represented by a physical item in your inventory: the Gold Consumable.
When you place a Gold item in your Creative Inventory, it becomes a "registered currency." This means devices on your island can "see" it, count it, and take it away. It’s like a key that fits a specific lock. If you don’t have the key (gold), the lock (device) stays shut.
2. The Devices: Your Shops
You don’t need to write code to build a shop. You just need the right devices:
- Item Granter: Think of this as a vending machine slot. You put a weapon inside, and it spits it out. But we can make it charge a toll.
- Conditional Button: This is a gatekeeper. It checks if a condition is met (Do you have enough gold?) before it activates another device (like an Item Spawner).
- Item Spawner: The actual source of the loot.
3. The Economy: Give and Take
You can’t just take gold; you have to give it. You’ll use Item Spawners to drop gold coins around the map. Players pick them up, their gold count goes up, and then they can spend it at your shops. It’s a simple loop: Loot Gold -> Buy Loot.
Let's Build It
We are going to build a "Legendary Vending Machine." It will cost 500 Gold to get a Heavy Assault Rifle. If you don’t have 500 Gold, nothing happens. If you do, you get the gun, and your gold count drops.
Step 1: Set Up the Shop
- Place an Item Spawner device.
- In the properties panel, open the Item slot.
- Select a Heavy Assault Rifle (or whatever expensive gun you want to gatekeep).
- Set the Max Items to 1 (so it only gives one at a time).
- Set Respawn Time to 5 seconds (so they can buy it again).
Step 2: Register the Currency
This is the most important step. The device needs to know which gold to take.
- Go to your Creative Inventory.
- Select the Gold Consumable item.
- Press Z to split the stack until you have a small amount (e.g., 100 gold).
- Drop this gold on the ground next to your Item Spawner.
- Stand next to the Item Spawner and drop the gold onto it.
- Why? This "registers" the gold to the device. The device now knows, "Ah, this shiny thing is my payment."
Step 3: Add the Paywall (Conditional Button)
Now, let’s make it cost money.
- Place a Conditional Button device near the Item Spawner.
- In the Conditional Button’s properties, set the Condition to Player Has Currency.
- In the Currency slot, select the Gold Consumable you just registered.
- Set the Cost to 500.
- Connect the Output of the Conditional Button to the Input of the Item Spawner.
- Logic: "If player has 500 Gold -> Open Item Spawner."
Step 4: Let Players Earn Gold
You need to give players a way to get that 500 gold.
- Place an Item Spawner in the middle of your map.
- Set its item to Gold Consumable.
- Set Max Items to 500.
- Set Respawn Time to 10 seconds.
- Optional: Place a Damage Zone that kills players every 5 seconds to make them run back to the gold spawner, keeping the economy moving.
Step 5: Test It
- Play your island.
- Run to the gold spawner and pick up 500 gold.
- Go to your vending machine.
- Press the button. The Conditional Button checks your wallet. If you have 500, it triggers the Item Spawner, you get the gun, and your gold drops to 0.
- Try it again without gold. Nothing happens. Success!
Try It Yourself
You’ve built a shop. Now, break it.
Challenge: Build a "Healing Station" that only heals players if they have at least 100 Gold. If they have less, play a sound effect that says "Too Poor" (you can use a Sound Player device).
Hint: You’ll need to use a Conditional Button to check the cost, but you’ll also need to connect a Healing Station device. Think about how you can trigger the sound effect only if the condition fails (i.e., if the player doesn't have enough gold). Look into the Else output on the Conditional Button.
Recap
- Gold Items are the currency of Fortnite Creative.
- You register gold by dropping it onto a device to teach it what money looks like.
- Conditional Buttons act as bouncers, checking if a player has enough gold before letting them access loot.
- Item Spawners can give out gold, creating a loop where players earn and spend.
Now go forth and monetize your creativity. Make them pay for that shield potion.
References
- https://dev.epicgames.com/documentation/en-us/fortnite/using-gold-items-in-fortnite-creative
- https://dev.epicgames.com/documentation/en-us/fortnite/using-items-in-fortnite-creative
- https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-items-in-fortnite-creative
- https://dev.epicgames.com/documentation/en-us/fortnite-creative/using-gold-consumables-in-fortnite-creative
- https://dev.epicgames.com/documentation/en-us/fortnite-creative/pinbrawl-in-fortnite-creative
Turn this into a guided course
Add using-gold-items-in-fortnite-creative to your free study plan — we'll suggest related pages and stitch the lot into one compile-checked, self-guided lesson with worked examples and quizzes.
References
Original tutorial generated by Verse Island from the Verse/UEFN knowledge base, with references to the Epic Games sources above. Code is validated against the knowledge base.