★ ROBLOX FANTASY CONSOLE ★

PLUTO-8

Fantasy Console in Roblox

Create, share and play tiny pixel games — right inside Roblox. No downloads, no setup. Just code.

Features

Everything you need to build and share pixel games.

🖥️

256×256 Display

256-color palette, pixel-perfect rendering at 30 FPS

💻

Lua Scripting

Simple PICO-8 inspired API — cls, pset, spr, map, btn and more

🎨

Sprite Editor

Built-in Aseprite-style sprite editor with palette, zoom, tools

🌐

Game Sharing

Publish your games to the community, browse and like others

How It Works

From idea to published game in three steps.

1

Write Lua Code

Use the in-game code editor. Write _init, _update and _draw functions with the PLUTO-8 API.

2

Design Sprites

Use the built-in pixel art editor to create 8×8 sprites and tilemaps.

3

Share & Play

Publish your cartridge to the community. Others can play it instantly inside Roblox.

lua
-- PLUTO-8 minimal game
function _init()
  x, y = 128, 128
end

function _update()
  if btn(0) then x -= 2 end
  if btn(1) then x += 2 end
  if btn(2) then y -= 2 end
  if btn(3) then y += 2 end
end

function _draw()
  cls(1)
  circfill(x, y, 4, 10)
  print("HELLO PLUTO-8!", 80, 10, 7)
end

Ready to start building?

Jump into Roblox, open PLUTO-8 and write your first game in minutes.