Advertisement
Rumanthan

Untitled

Mar 24th, 2025
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Rayfield/main/source"))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Rumanthan's Hub",
  5. LoadingTitle = "Loading...",
  6. LoadingSubtitle = "By Rumanthan",
  7. ConfigurationSaving = {
  8. Enabled = false,
  9. },
  10. Discord = {
  11. Enabled = false,
  12. },
  13. KeySystem = false
  14. })
  15.  
  16. -- Tab
  17. local Tab = Window:CreateTab("Main", 4483362458) -- Change icon if needed
  18.  
  19. -- Harlen Hub (Break in 2)
  20. Tab:CreateButton({
  21. Name = "Harlen Hub (Break in 2)",
  22. Callback = function()
  23. loadstring(game:HttpGet("https://raw.githubusercontent.com/harlenscripts/HarlenHub/main/HarlenScripts"))()
  24. end
  25. })
  26.  
  27. -- Blue Lock Rivals Script Hub
  28. Tab:CreateButton({
  29. Name = "Blue Lock Rivals Script Hub",
  30. Callback = function()
  31. loadstring(game:HttpGet("https://pastebin.com/raw/WWa5yYf8"))()
  32. end
  33. })
  34.  
  35. -- BLR Custom Styles (OP)
  36. Tab:CreateButton({
  37. Name = "BLR Custom Styles (OP)",
  38. Callback = function()
  39. loadstring(game:HttpGet("https://raw.githubusercontent.com/OrignalCombo/Atomic-Hub/refs/heads/main/ScriptX"))()
  40. end
  41. })
  42.  
  43. -- Hydroxide
  44. Tab:CreateButton({
  45. Name = "Hydroxide",
  46. Callback = function()
  47. local owner = "Upbolt"
  48. local branch = "revision"
  49.  
  50. local function webImport(file)
  51. return loadstring(game:HttpGetAsync(("https://raw.githubusercontent.com/%s/Hydroxide/%s/%s.lua"):format(owner, branch, file)), file .. '.lua')()
  52. end
  53.  
  54. webImport("init")
  55. webImport("ui/main")
  56. end
  57. })
  58.  
  59. -- Infinite Yield (Admin Commands)
  60. Tab:CreateButton({
  61. Name = "Infinite Yield (Admin Commands)",
  62. Callback = function()
  63. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  64. end
  65. })
  66.  
  67. -- Close Button & Toggle UI
  68. local UI = game:GetService("CoreGui"):FindFirstChild("Rayfield")
  69. if not UI then UI = game:GetService("Players").LocalPlayer.PlayerGui end
  70.  
  71. local toggleButton = Instance.new("TextButton")
  72. toggleButton.Size = UDim2.new(0, 120, 0, 40)
  73. toggleButton.Position = UDim2.new(0, 10, 0, 10)
  74. toggleButton.Text = "Open GUI"
  75. toggleButton.Parent = game:GetService("CoreGui")
  76. toggleButton.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  77. toggleButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  78. toggleButton.Font = Enum.Font.SourceSans
  79. toggleButton.TextSize = 18
  80. toggleButton.Visible = false
  81.  
  82. Window:CreateButton({
  83. Name = "Close GUI",
  84. Callback = function()
  85. UI.Enabled = false
  86. toggleButton.Visible = true
  87. end
  88. })
  89.  
  90. toggleButton.MouseButton1Click:Connect(function()
  91. UI.Enabled = true
  92. toggleButton.Visible = false
  93. end)
  94.  
  95. Rayfield:Notify({
  96. Title = "GUI Loaded",
  97. Content = "Your script hub is ready!",
  98. Duration = 5
  99. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement