Skip to main content
The FH Development Isolation Commands are great! What they do is allow staff members to isolate a user. It will sit the user in chairs in isolation, take their jump power, and team them. This then sends a discord log!
For this product to work please enable HTTP Service and API Services in your games Experience Settings. The product will not work if they are turned off. These settings are in your games Security section. This is the first thing a support agent will ask.
This product will work in studio.
Network Client (11)

Studio

  1. Move the folder called FHIsolation into Workspace,
  2. Do not move anything out of it,
  3. Do not delete anything

Set-Up

  1. Iso commands has 4 major parts inside it,
  2. In the folder you should see this,
Image
  1. Opening the Settings and you should get something that looks like this
local module = {}

-- Whitelist for the Isolate Command
function module.Whitelist(plr)
	return true
	--return plr:GetRankInGroup(161175556 --[[Group ID]]) >= 12 --[[Minimum Rank]]
end

-- Settings
module["Isolate Cooldown"] = 10 -- Cooldown for the Isolate Command
module["Prefix"] = ":"
module["Isolation Team"] = game:GetService("Teams").Isolation
module["Database"] = "/api/isolation/logging/logged" -- Change this or it will break becuase you arent using the Hillcrest Group

-- Logging
module["Log Isolates"] = true -- Should Isolations be logged
module["Log URL"] = "example-webhook-link" -- Webhook URL

-- DO NOT TOUCH -- WILL BREAK GAME
module["Root"] = "https://fh-developments.base44.app" -- FH Developments API system root (our website)
module["Recieving"] = true -- If set to false, the Isolate Command will not work

return module
Changing the Root or Receiving:Changing them parts will disallow FH Development access and will break our licensing module and other assets!
  1. Change the group ID and the min rank to be what you want them to be,
  2. Change Database to be something (it can not contain: / , . - _ + = " £ $ % ^ & * ( ) ~ # ' @ ; : ? > < | \ ¬ ) or it will break,
  3. The Log URL is the discord webhook URL for logging isolations,
  4. The rest of the settings are very self explanatory,
  5. In the folder called IsolationSeats duplicate the seats in there (change their transparency, material, color to your liking) and put them where students will sit in isolation (remember they are auto seated),
  6. Done!