Create and Customize Your Own Experiences

Discover the Unreal Editor for Fortnite through our unique templates and ready-to-use devices that boost your creative experience.

Popular Tutorials

Tutorial

Getting Started with UEFN

Learn the basics of Unreal Editor for Fortnite and start creating your first world.

Tutorial

Advanced Verse Programming

Deep dive into Verse programming language with practical examples and projects.

Tutorial

Game Mechanics & Physics

Master advanced game mechanics and physics simulation in UEFN.

Code Example

verse_example.verse
# Example Verse Code
using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }

verse_device := class(creative_device):
    # Properties
    var Score: int = 0
    
    # Initialize game setup
    OnBegin<override>()