Bobrix Docs

Welcome to Bobrix Docs

Explore creator guides, cloud services, and engine reference. Use the sidebar or the search box to jump straight to a topic.

Note: These pages are paraphrased summaries. For authoritative details, see the Roblox Creator Hub docs.

Sample Snippets

-- In StarterPlayer > StarterPlayerScripts local Players = game:GetService('Players') print('Hello from Bobrix!') Players.PlayerAdded:Connect(function(plr) print('Joined:', plr.Name) end)
TopicWhy it matters
LocalScript (client)Runs on the player’s device and is used for UI, input, and camera.
Data StoresPersist player progress between play sessions from server scripts.
LuauRoblox’s fast, gradually typed language derived from Lua 5.1.