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.
Quick Links
Sample Snippets
-- In StarterPlayer > StarterPlayerScripts
local Players = game:GetService('Players')
print('Hello from Bobrix!')
Players.PlayerAdded:Connect(function(plr)
print('Joined:', plr.Name)
end)
| Topic | Why it matters |
|---|---|
| LocalScript (client) | Runs on the playerβs device and is used for UI, input, and camera. |
| Data Stores | Persist player progress between play sessions from server scripts. |
| Luau | Robloxβs fast, gradually typed language derived from Lua 5.1. |