RoSentry Docs

Installation

All SDK installation paths and recommended project structure.

  • ReplicatedStorage/RoSentry (or ReplicatedStorage/Packages/RoSentry with Wally)
  • ServerScriptService/BootstrapRoSentry.server.lua
  • StarterPlayer/StarterPlayerScripts/BootstrapRoSentry.client.lua

Wally install

[dependencies]
RoSentry = "boshyxd/rosentry@0.1.0"
wally install

Server import:

local RoSentry = require(game.ReplicatedStorage.Packages.RoSentry)

Direct download

  1. Download RoSentry.rbxm — always built from the latest SDK source.
  2. In Roblox Studio, right-click ReplicatedStorage and choose Insert from File, then select RoSentry.rbxm.
  3. Require it with:
local RoSentry = require(game.ReplicatedStorage.RoSentry)

Manual install

  1. Place RoSentry under ReplicatedStorage.
  2. Require it with:
local RoSentry = require(game.ReplicatedStorage.RoSentry)

Production checklist

  • SDK initialized on server startup
  • SDK initialized on client startup
  • apiKey configured only on server
  • Test message appears in RoSentry dashboard
  • Environment set (production, staging, etc.)

On this page