https://github.com/sily-lily/roactweb
A version of Roact designed to be supported globally using HTTP requests
https://github.com/sily-lily/roactweb
lua luau roact roblox
Last synced: 8 months ago
JSON representation
A version of Roact designed to be supported globally using HTTP requests
- Host: GitHub
- URL: https://github.com/sily-lily/roactweb
- Owner: sily-lily
- Archived: true
- Created: 2025-06-30T21:48:16.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-07-30T00:04:04.000Z (8 months ago)
- Last Synced: 2025-08-15T09:31:08.783Z (8 months ago)
- Topics: lua, luau, roact, roblox
- Language: Lua
- Homepage:
- Size: 144 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RoactWeb
A version of Roact designed to be supported globally using **HTTP requests**, designed for Roblox executors.
> [!WARNING]
> This project **cannot be used in Roblox Studio**, because `game:HttpGet()` is an exploit function on the `game` metatable.
---
### Purpose 🔍
This version is intended to be ModuleScript-less, meaning it's fully available to use entirely on the client!
If you'd like to create a UI using Roact, however you don't want to use any "**Gui to Lua**" plugins or `Instance.new`, you can import Roact locally and create easily.
### Usage 🔗
```lua
local Roact = loadstring(game:HttpGet(
"https://raw.githubusercontent.com/sily-lily/RoactWeb/refs/heads/main/RoactWeb.lua"
))()
-- ... Use Roact as you'd normally would.
```
---
# Credits
- [chipio - DevForum](https://devforum.roblox.com/t/roact-the-ultimate-ui-framework/796618) – Original Roact thread / creator
- [Roblox - GitHub](https://github.com/Roblox/roact) – Discontinued Roact source code
- [Suno - GitHub](https://github.com/sily-lily) – HTTP request conversion for Roact framework