Advertisement
AA122294

...

Mar 11th, 2025
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2. local Window = Rayfield:CreateWindow({
  3. Name = "FAYU HUB UPT SYSTEM KEY",
  4. Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
  5. LoadingTitle = "Rayfield Interface Suite",
  6. LoadingSubtitle = "by Sirius",
  7. Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes
  8.  
  9. DisableRayfieldPrompts = false,
  10. DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
  11.  
  12. ConfigurationSaving = {
  13. Enabled = true,
  14. FolderName = nil, -- Create a custom folder for your hub/game
  15. FileName = "Big Hub"
  16. },
  17.  
  18. Discord = {
  19. Enabled = false, -- Prompt the user to join your Discord server if their executor supports it
  20. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD
  21. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  22. },
  23.  
  24. KeySystem = false, -- Set this to true to use our key system
  25. KeySettings = {
  26. Title = "Untitled",
  27. Subtitle = "Key System",
  28. Note = "No method of obtaining the key is provided", -- Use this to tell the user how to get a key
  29. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  30. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  31. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  32. Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  33. }
  34. })
  35. local Tab = Window:CreateTab("script and script lost media", 4483362458) -- Title, Image
  36. local Section = Tab:CreateSection("Section Example")
  37. local Button = Tab:CreateButton({
  38. Name = "Evade UPDATED (OP UNPATCHED GUI) (OBJECTIVE ESP ADDED)",
  39. Callback = function()
  40. loadstring(game:HttpGet("https://raw.githubusercontent.com/PepesGH1/stuff/main/evadeloader.lua"))()
  41. -- The function that takes place when the button is pressed
  42. end,
  43. })
  44. local Button = Tab:CreateButton({
  45. Name = "Nex Hub",
  46. Callback = function()
  47. loadstring(game:HttpGet("https://raw.githubusercontent.com/CopyReal/NexHub/main/NexHubLoader", true))()
  48. -- The function that takes place when the button is pressed
  49. end,
  50. })
  51. local Button = Tab:CreateButton({
  52. Name = "Dot Hub",
  53. Callback = function()
  54. loadstring(game:HttpGet("https://raw.githubusercontent.com/CF-Trail/random/main/.x.vr.e.hi/loader.lua"))()
  55. -- The function that takes place when the button is pressed
  56. end,
  57. })
  58. local Button = Tab:CreateButton({
  59. Name = "unknown hub (Lost media)",
  60. Callback = function()
  61. loadstring(game:HttpGet('https://raw.githubusercontent.com/Unknownproooolucky/Unknown-Hub-X-Universal-Games/main/Games/Evade'))()
  62. -- The function that takes place when the button is pressed
  63. end,
  64. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement