-- Orion laden local OrionLib = loadstring(game:HttpGet("https://sts19735474.neocities.org/fluxus.orionlibray.lua"))() -- Fenster local Window = OrionLib:MakeWindow({ Name = "KeySystem │ GalaxyHub", SaveConfig = false, IntroText = "KeySystem" }) -- Richtiger Key local CorrectKey = "Fluxusmain.luacoding212" -- Tab local KeyTab = Window:MakeTab({ Name = "Key", Icon = "rbxassetid://4483345998", PremiumOnly = false }) -- Get Key Button KeyTab:AddButton({ Name = "Get Key", Callback = function() setclipboard("https://sts19735474.neocities.org/getgalaxykey") OrionLib:MakeNotification({ Name = "GalaxyHub", Content = "Key link copied!", Image = "rbxassetid://4483345998", Time = 3 }) end }) -- Key Input KeyTab:AddTextbox({ Name = "Enter Key", Default = "", TextDisappear = false, Callback = function(Value) if Value == CorrectKey then OrionLib:MakeNotification({ Name = "Key System", Content = "Correct Key! Loading GalaxyHub...", Image = "rbxassetid://4483345998", Time = 3 }) wait(1) -- Script laden loadstring(game:HttpGet("https://sts19735474.neocities.org/Galaxy.new.nobecomechance"))() else OrionLib:MakeNotification({ Name = "Key System", Content = "Wrong Key!", Image = "rbxassetid://4483345998", Time = 3 }) end end }) -- Informationen Tab local InfoTab = Window:MakeTab({ Name = "Informationen", Icon = "rbxassetid://4483345998", PremiumOnly = false }) InfoTab:AddParagraph("Key System no working join the discord", "") InfoTab:AddParagraph("This is the Version 3 ", "") InfoTab:AddParagraph("© 2026 GalaxyHub", "") -- GUI starten OrionLib:Init()