Bobrix Docs

Getting Started

Install Roblox Studio, create a new place, and run your first script. Studio is the main IDE for building and testing experiences on Windows and macOS.

Tip: Use Play (▶) to test quickly; use Start (server) + Client to test server/client interactions.

Create your first script

  1. In Explorer, right-click StarterPlayer ▸ StarterPlayerScriptsInsert Object ▸ LocalScript.
  2. Paste this snippet and press Play:
local Players = game:GetService("Players") print("Hello from Bobrix!") Players.PlayerAdded:Connect(function(plr) print("Joined:", plr.Name) end)

Next steps

Works with: Studio Play Solo • Server/Client test