squidingtin

FleshPitConfig

Apr 16th, 2026 (edited)
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.89 KB | None | 0 0
  1. {
  2.   "__comment_global": "This file is a command reference. Uncomment (remove __comment style entries) when using.",
  3.  
  4.   "commands": [
  5.  
  6.     {
  7.       "__comment": "SHUTDOWN - kicks all players and blocks joins",
  8.       "type": "disabled_shutdown",
  9.       "message": "Server closed for update"
  10.     },
  11.  
  12.     {
  13.       "__comment": "KICK ALL PLAYERS",
  14.       "type": "disabled_kickAll",
  15.       "message": "You were removed from the server"
  16.     },
  17.  
  18.     {
  19.       "__comment": "GLOBAL MESSAGE (console only unless you hook UI)",
  20.       "type": "disabled_broadcast",
  21.       "message": "Hello players!"
  22.     },
  23.  
  24.     {
  25.       "__comment": "TELEPORT EVERYONE TO ANOTHER PLACE",
  26.       "type": "disabled_teleportAll",
  27.       "placeId": 123456789
  28.     },
  29.  
  30.     {
  31.       "__comment": "SET LIGHTING",
  32.       "type": "disabled_setLighting",
  33.       "preset": "0"
  34.     },
  35.  
  36.     {
  37.       "__comment": "SET Fog",
  38.       "type": "disabled_setFog",
  39.       "preset": "0"
  40.     },
  41.  
  42.     {
  43.       "__comment": "HEAL ALL PLAYERS TO FULL HP",
  44.       "type": "disabled_healAll"
  45.     },
  46.  
  47.     {
  48.       "__comment": "RESET ALL PLAYERS (respawn)",
  49.       "type": "disabled_resetAll"
  50.     },
  51.  
  52.     {
  53.       "__comment": "GIVE EVERY PLAYER A TOOL FROM ServerStorage",
  54.       "type": "disabled_giveAllTool",
  55.       "toolName": "Radar"
  56.     },
  57.  
  58.     {
  59.       "__comment": "SET ALL PLAYERS WALK SPEED",
  60.       "type": "disabled_setWalkSpeed",
  61.       "value": 24
  62.     },
  63.  
  64.     {
  65.       "__comment": "SET ALL PLAYERS JUMP POWER",
  66.       "type": "disabled_setJumpPower",
  67.       "value": 80
  68.     },
  69.  
  70.     {
  71.       "__comment": "SPAWN A ROBLOX MODEL (InsertService asset id required)",
  72.       "type": "disabled_spawnModel",
  73.       "assetId": 12345678,
  74.       "position": [656.794, 248.881, 439.97],
  75.       "rotation": [0, 90, 0]
  76.     },
  77.  
  78.     {
  79.       "__comment": "CLEAR ALL REMOTELY SPAWNED MODELS",
  80.       "type": "disabled_clearSpawns"
  81.     }
  82.  
  83.   ]
  84. }
Advertisement
Add Comment
Please, Sign In to add comment