Advertisement
NukeVsCity

balls

May 11th, 2022 (edited)
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. local no
  2. no = hookfunction(syn.request, function(...)
  3. local Args = {...}
  4. local Self = Args[1]
  5. if string.find(Self['Url'], 'https://gsapi.xyz/domain/checkPremium.php') then
  6. return print("no")
  7. end
  8. return no(...)
  9. end)
  10.  
  11. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  12.  
  13.  
  14. local Window = OrionLib:MakeWindow({Name = "Title of the library", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  15.  
  16. --[[
  17. Name = <string> - The name of the UI.
  18. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  19. SaveConfig = <bool> - Toggles the config saving in the UI.
  20. ConfigFolder = <string> - The name of the folder where the configs are saved.
  21. ]]
  22.  
  23.  
  24. local Tab = Window:MakeTab({
  25. Name = "Tab 1",
  26. Icon = "rbxassetid://4483345998",
  27. PremiumOnly = false
  28. })
  29.  
  30. --[[
  31. Name = <string> - The name of the tab.
  32. Icon = <string> - The icon of the tab.
  33. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  34. ]]
  35.  
  36.  
  37. Tab:AddButton({
  38. Name = "Button!",
  39. Callback = function()
  40. print("button pressed")
  41. end
  42. })
  43.  
  44. --[[
  45. Name = <string> - The name of the button.
  46. Callback = <function> - The function of the button.
  47. ]]
  48.  
  49.  
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement