Advertisement
Myusername3000

Test

Oct 12th, 2023
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/SiriusSoftwareLtd/Rayfield/main/source.lua'))()
  2. getgenv().SecureMode = true
  3.  
  4. local Window = Rayfield:CreateWindow ({
  5. Name = "Universal - Juice hub",
  6. LoadingTitle = "Universal - Juice hub",
  7. LoadingSubtitle = "Brought to you by Juice hub",
  8. },
  9. Discord = {
  10. Enabled = true,
  11. Invite = "https://discord.gg/ECMbs4G8", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  12. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  13. },
  14.  
  15. KeySystem = true, -- Set this to true to use our key system
  16. KeySettings = {
  17. Title = "Get key!",
  18. Subtitle = "Key System of Juice Hub",
  19. Note = "Join our discord and find #key channel, our link: https://discord.gg/ECMbs4G8",
  20. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  21. SaveKey = false, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  22. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  23. Key = {"JuiceHubKey"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  24. })
  25.  
  26. local Tab = Window:CreateTab("Main GUI's")
  27. local Section = Tab:CreateSection("Blade Ball Main GUI's")
  28. local Label = Tab:CreateLabel("Thanks for using Juicy hub!")
  29.  
  30. local Button = Tab:CreateButton({
  31. Name = "Join our discord! ECMbs4G8"
  32. })
  33.  
  34. local Button = Tab:CreateButton({
  35. Name = "Blade Ball",
  36. Callback = function()
  37. loadstring(game:HttpGet(("https://pastebin.com/raw/MBtetkiC")))()
  38. end,
  39. })
  40.  
  41. local Button = Tab:CreateButton({
  42. Name = "Blox Fruits",
  43. Callback = function()
  44. loadstring(game:HttpGet(("https://pastebin.com/raw/yZaB8msz")))()
  45. end,
  46. })
  47.  
  48. local Button = Tab:CreateButton({
  49. Name = "Murder Mystery 2",
  50. Callback = function()
  51. loadstring(game:HttpGet(("https://pastebin.com/raw/E7wYMc9Y")))()
  52. end,
  53. })
  54.  
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement