Skip to main content
The cheats global provides access to all game cheats. Cheats modify game behavior for testing, debugging, or fun.
Cheats can only be enabled in single-player mode or on servers where cheats are allowed. The cheat menu must be enabled in the game settings.

Properties

All properties are boolean flags that enable or disable specific cheats, except where noted.

Sandbox & Building

sandboxMode
boolean
Enables sandbox mode with unrestricted building capabilities
buildInPauseMode
boolean
Allows building and editing while the game is paused
disableClearanceChecks
boolean
Disables collision detection for rides and scenery
disableSupportLimits
boolean
Removes support height limits for rides
allowTrackPlaceInvalidHeights
boolean
Allows track placement at any height

Ride Restrictions

ignoreRideIntensity
boolean
Guests will ride attractions regardless of intensity preferences
ignoreRidePrice
boolean
Guests will pay any price for rides
allowArbitraryRideTypeChanges
boolean
Allows changing ride types to incompatible track layouts
disableTrainLengthLimit
boolean
Removes train length restrictions
enableAllDrawableTrackPieces
boolean
Makes all track pieces available regardless of ride type
enableChainLiftOnAllTrack
boolean
Allows chain lift on any track piece
fastLiftHill
boolean
Increases lift hill speed
showAllOperatingModes
boolean
Shows all operating modes for rides
showVehiclesFromOtherTrackTypes
boolean
Shows vehicles from other ride types in the vehicle selection
disableAllBreakdowns
boolean
Prevents all ride breakdowns
disableBrakesFailure
boolean
Prevents brake failures specifically
disableRideValueAging
boolean
Prevents ride excitement ratings from decreasing over time

Park Management

forcedParkRating
number
Forces the park rating to a specific value (0-999). Set to -1 to disable
neverendingMarketing
boolean
Marketing campaigns never expire
makeAllDestructible
boolean
Allows deletion of normally protected scenery and structures

Guest Behavior

disableLittering
boolean
Prevents guests from littering
disableVandalism
boolean
Prevents guests from vandalizing park property

Scenery & Environment

allowSpecialColourSchemes
boolean
Enables special color schemes for rides and scenery
disablePlantAging
boolean
Prevents plants from requiring maintenance
freezeWeather
boolean
Stops weather from changing

Research & Development

ignoreResearchStatus
boolean
Makes all rides and scenery available regardless of research progress

Paths

allowRegularPathAsQueue
boolean
Allows regular paths to be used as queue lines

Usage Examples

Enable Sandbox Mode

// Enable sandbox mode for unlimited building
cheats.sandboxMode = true;
cheats.disableClearanceChecks = true;
cheats.buildInPauseMode = true;

Testing Ride Behavior

// Make guests ride everything
cheats.ignoreRideIntensity = true;
cheats.ignoreRidePrice = true;

// Prevent breakdowns during testing
cheats.disableAllBreakdowns = true;

Force Park Rating

// Set park rating to maximum
cheats.forcedParkRating = 999;

// Disable forced rating (use actual rating)
cheats.forcedParkRating = -1;

Enable All Features

// Make everything available for creative building
cheats.ignoreResearchStatus = true;
cheats.showAllOperatingModes = true;
cheats.showVehiclesFromOtherTrackTypes = true;
cheats.enableAllDrawableTrackPieces = true;

Guest Management

// Create a perfectly clean park
cheats.disableLittering = true;
cheats.disableVandalism = true;

Multiplayer Considerations

In multiplayer, cheats can only be modified on the server. Clients cannot change cheat values. The server must have cheats enabled in its configuration.
// Check if running on server
if (network.mode === "server") {
    cheats.sandboxMode = true;
    console.log("Sandbox mode enabled on server");
}