Working
Galaxy's Hub | Script Library
Free Roblox script · no key system · mobile — copy and run on your executor.
Runs on
Description
0 copies
Here’s the brand new Galaxy's Hub script library! 🚀
Got a few elements done for now, btw:
- Tab:AddLabel
- Tab:AddButton
- Tab:AddToggle
- Tab:AddColorSelection
- Tab:AddTextBox
- Tab:AddSlider
(Yep, they're all custom btw.)
It also comes with fully interactive notifications featuring customizable buttons, so you can set them up however you want. Oh, and btw, the whole library is open source.
More stuff is coming soon, so stay tuned!
Join our Discord for updates, new features, and more!
Safety check
Heuristic scan of listing code — not antivirus. Checks common token-grabber / webhook patterns. Upload safety
- No known token / webhook theft patterns flagged
- External
HttpGet:raw.githubusercontent.com - Uses
loadstring(allowed — common for loaders)
Clean patterns1 remote URL
Script code
--[[ you can make alot of things, you can add a loading screen with a wait(time) before loading the UI on the player's face, its recommended using loading UIs to engage players using your hub, check docs for further instructions.: !!UNDER CONSTRUCTION!! ]]
-- loading screen example, default loading screen.
loadstring(game:HttpGet("https://raw.githubusercontent.com/Galaxy-BloxYT/Galaxy-s-Hub-lib-default-loading-UI/refs/heads/main/UI"))() -- open sourced loading screen for you to modify. should give credits tho. May need to execute 2 times, the scripts uses writefile for music and another writefile for a animation. (Image animation) Optional. You can remove this if you want.
wait(5)
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Galaxy-BloxYT/Galaxy-s-Hub-Script-Library/refs/heads/main/Library%20engine"))()
local GalaxysHubLib = Library.Construct("My Incredible Hub!")
GalaxysHubLib:Notify("Example", "Description Example", true, {
["Noti. button example"] = function() print("Syntax") end
}) -- instead of GalaxysHubLib, you can put any name you want, even SkibidiToilet!
local Tab = GalaxysHubLib:CreateTab("General")
Tab:AddButton("Button Example", function()
game.Players.LocalPlayer.Character.Humanoid.Health = 0
end)
Tab:AddLabel("Label Example")
Tab:AddColorSelection("Color Selection Example (broken for now)", Color3.new(1,1,1), function(color)
print("Chosen Color: " .. tostring(color))
end)
Tab:AddToggle("Toggle Example", function(state)
end)
Tab:AddSlider("Speed", 16, 100, function(value)
game.Players.LocalPlayer.Character.Humanoid.Walkspeed = value
end)
Tab:AddTextBox("Textbox Example", "Example", {NumbersOnly = true}, function(value) -- NumbersOnly is self-explanatory.
print("Example Number:" .. value)
end)
local Tab = GalaxysHubLib:CreateTab("Configurations")
Tab:AddButton("Save configurations", function() -- syntax under here
GalaxysHubLib:Notify("Saved", "Settings have been saved.")
end)
Long script — expand to view syntax highlighting
Discussion
0 / 20Log in to join the discussion.
Start the discussion
Ask a question, share a tip, or leave feedback for the creator.
More like this
Galaxy's Hub | Script Library