Community listing page, reviews here may not be monitored by the author.
MLua
No reviews yet
Pure Java Lua-style scripting library mod for Minecraft.
Provides a framework or library for other mods to use.
Forge is a popular mod loader for versions 1.1+ of Minecraft.
Neoforge is a fork of the Minecraft Forge available for versions 1.20.1+ of Minecraft. Many Forge mods are compatible with Neoforge and vice versa.
Fabric is a mod loader for versions 1.14+ of Minecraft, particularly popular for client side and optimization mods.
Community voices
Reviews
Filters
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
Compatibility
Supported Environments
Works on the client or the server alone, but does more when on both.
About
Project Details
For authors
Embed Badge
If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
Resources
External Links
About
Description
MLua
MLua is a pure Java scripting mod for Minecraft. It brings Lua/Luau-style scripting into Minecraft with APIs designed around players, worlds, events, registries, commands, networking, files, UI, and more.
The goal is to make mod scripting feel simple and familiar while still fitting naturally into Minecraft’s systems.
Features
- Lua/Luau-style scripting powered by a Java backend
- Support for client, server, command, registry, and module scripts
- Roblox/Luau-inspired APIs adapted for Minecraft
- Object-style wrappers for players, entities, blocks, items, and worlds
- Scriptable items, blocks, entities, commands, events, and networking
- Runtime-generated documentation that matches the current build
Scripts
During development, scripts can be placed in:
run/mlua/scripts/
Mods can also bundle scripts inside their jar at:
assets/<modid>/mlua/scripts/
Supported script types:
*.mixin.lua mixins i guess
*.registry.lua early registry scripts
*.commands.lua command registration scripts
*.server.lua server-side scripts
*.client.lua client-side scripts
*.lua module scripts
Documentation
MLua generates documentation at runtime inside the Minecraft client.
After launching the game, open:
run/mlua/docs/index.html
This generated documentation is the best source of truth because it reflects the APIs available in the build you are currently running.
Example
local Players = Minecraft:GetService("Players")
local World = Minecraft:GetService("World")
Players.PlayerAdded:Connect(function(player)
player:SendMessage("Hello from MLua!")
player:SetGameMode(GameMode.Creative)
end)
World:SetWeather(Weather.Clear)
Using MLua From Another Mod
To use MLua from another mod, add MLua alongside your mod and declare it as a dependency in mods.toml:
[[dependencies.yourmodid]]
modId="mlua"
mandatory=true
versionRange="[0.1.0,)"
ordering="AFTER"
side="BOTH"
Versions
Files
Relations
Project Relations
More like this
Similar Mods
Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.
On ModDex
Community snapshot
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers
Statistics
Resources