Public
Host Lua scripts for Roblox require/loadstring loading
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.

🎮 Roblox Lua Loader

Host Lua scripts and generate loadstring snippets for Roblox.

How It Works

  1. Create a script — Write your Lua code in the web editor
  2. Copy the loader — Get a one-liner like:
    loadstring(game:HttpGet("https://your-url/api/scripts/abc123"))("USERNAME")
  3. Run in Roblox — The script receives the username via ... (varargs)

Lua Script Template

local user = ... print("Hello, " .. user .. "!") -- Your code here

API

MethodEndpointDescription
GET/api/scriptsList all scripts
POST/api/scriptsCreate a script ({ name, code })
GET/api/scripts/:idGet raw Lua code (for loadstring)
GET/api/scripts/:id/metaGet script metadata
PUT/api/scripts/:idUpdate a script
DELETE/api/scripts/:idDelete a script

Architecture

Rendering mermaid diagram...