Installation
All SDK installation paths and recommended project structure.
Recommended Roblox layout
ReplicatedStorage/RoSentry(orReplicatedStorage/Packages/RoSentrywith Wally)ServerScriptService/BootstrapRoSentry.server.luaStarterPlayer/StarterPlayerScripts/BootstrapRoSentry.client.lua
Wally install
[dependencies]
RoSentry = "boshyxd/rosentry@0.1.0"wally installServer import:
local RoSentry = require(game.ReplicatedStorage.Packages.RoSentry)Direct download
- Download RoSentry.rbxm — always built from the latest SDK source.
- In Roblox Studio, right-click
ReplicatedStorageand choose Insert from File, then selectRoSentry.rbxm. - Require it with:
local RoSentry = require(game.ReplicatedStorage.RoSentry)Manual install
- Place
RoSentryunderReplicatedStorage. - Require it with:
local RoSentry = require(game.ReplicatedStorage.RoSentry)Production checklist
- SDK initialized on server startup
- SDK initialized on client startup
apiKeyconfigured only on server- Test message appears in RoSentry dashboard
- Environment set (
production,staging, etc.)