Advertisement
SkidScripts

Solaris

Oct 25th, 2022
1,530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local URL = "https://solarishub.dev/"
  2.  
  3. local games = {
  4.     [286090429] = "Arsenal",
  5.     [1782832995] = "AUT",
  6.     [3233893879] = "Bad Business",
  7.     [3527629287] = "Big Paintball",
  8.     -- [6494523288] = "Blade Quest",
  9.     -- [5490351219] = "Clicker Madness",
  10.     [115797356] = "Counter Blox",
  11.     [2788229376] = "Da Hood",
  12.     [6172932937] = "Energy Assault",
  13.     -- [] = "HH",
  14.     [606849621] = "Jailbreak",
  15.     [254394801] = "KAT",
  16.     [6381829480] = "Kings Legacy SS",
  17.     [142823291] = "Murder Mystery",
  18.     [21532277] = "Notoriety",
  19.     [292439477] = "Phantom Forces",
  20.     [5041144419] = "SCP Roleplay",
  21.     [1511883870] = "Shindo Life",
  22.     [1962086868] = "TOH",
  23.     [4520749081] = "Kings Legacy"
  24. }
  25.  
  26. for i,v in next, games do
  27.     games[i] = table.concat(v:split(' '), '_')
  28. end
  29.  
  30. local name = games[game.PlaceId] or games[game.GameId]
  31.  
  32. return loadstring(game:HttpGet(URL .. "/" .. (name or "Universal") .. ".lua", true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement