A Luanti (formerly Minetest) mod that allows players to experience moon-like gravity with reduced gravitational force. Primarily designed for game parks and adventure areas.
✅ Luanti 5.x compatible
- Requires
player_monoids
- Low Gravity Zone: Activate a 50-block radius area with 12% normal gravity (moon-like conditions)
- Glowing Block: The Moon Walk block emits light (light level 10) for easy visibility in darkness
- player_monoids Integration: Uses
player_monoids.gravitydirectly for simple, compatible gravity changes - Automatic Timeout: Moon Walk effect automatically disables after 2 minutes
- Boundary Control: Players are kept within the effect radius and returned to the last valid position if they try to leave
- Download or clone this repository
- Place the
moonwalkfolder in your Luantimodsdirectory - Install
player_monoids - Enable the mod in your world configuration
Steel Ingot Mese Crystal Steel Ingot
Copper Ingot Mese Block Copper Ingot
Steel Ingot Mese Crystal Steel Ingot
- Craft the Moon Walk block using the recipe above
- Place the Moon Walk block anywhere in your world
- Right-click the block to activate moon gravity
- Your gravity will be reduced to 12% of normal
- You can jump much higher and fall much slower
- The block will display "Moon Walk busy" while active
- Right-click again to deactivate and return to normal gravity
- You will be teleported 1.5 blocks above the Moon Walk block
- The block will display "Moon Walk free"
Note: The effect automatically deactivates after 2 minutes (120 seconds) for safety.
Moon Walk uses player_monoids.gravity directly. Activation adds the gravity change with a stable ID, and deactivation removes that same change again.
The mod automatically restores normal physics when:
- A player joins the game (
on_joinplayer) - A player respawns (
on_respawnplayer) - A player leaves the game (
on_leaveplayer) - A player dies (
on_dieplayer)
You can modify these values in init.lua:
TIMEOUT = 120- Duration in seconds (default: 2 minutes)RADIUS = 50- Effect radius in blocks (default: 50 blocks)
-
v0.03 (2026-05-19)
- Simplified the mod to gravity-only behavior
- Made
player_monoidsa required dependency - Removed experimental compatibility workarounds
-
v0.02 (2026-05-17)
- Updated to modern Luanti API
- Added Player Physics Locking Pattern
- Added glowing effect (light_source = 10)
- Added crafting recipe
- Fixed deprecated function calls
- Improved LBM efficiency
-
v0.01 (2017-11-25)
- Initial release
- Originally from the "Joes Miniwelt" server, not previously available as a standalone mod
Code: LGPLv2.1+
Textures: CC BY-SA 3.0
Copyright (C) 2017-2026 Joachim Stolberg
- player_monoids
- Player Physics Design Pattern by joe7575
