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
- In Explorer, right-click StarterPlayer ▸ StarterPlayerScripts → Insert Object ▸ LocalScript.
- 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
- Try a Script in ServerScriptService for server logic.
- Split reusable logic into ModuleScripts.
- Explore the engine reference to find classes and services.
Works with: Studio Play Solo • Server/Client test