local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({ Name = "NOT safe gui", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest" }) local Tab = Window:MakeTab({ Name = "Main", Icon = "rbxassetid://4483345998", PremiumOnly = false }) Tab:AddLabel("YOU CAN BE BANNED OR WIPED FOR INF MONEY") Tab:AddButton({ Name = "Get inf money and all rods(devs include)", Callback = function() OrionLib:MakeNotification({ Name = "Warning", Content = "If you use this, you can get wiped or banned!", Image = "rbxassetid://4483345998", Time = 5 }) local function purchaseRods() local rodsFolder = game:GetService("ReplicatedStorage").resources.items.rods if not rodsFolder then warn("Folder Rods not found") return end local purchaseEvent = game:GetService("ReplicatedStorage").events.purchase local quantity = math.huge for _, rod in ipairs(rodsFolder:GetChildren()) do if rod:IsA("Folder") then local rodName = rod.Name purchaseEvent:FireServer(rodName, "Rod", nil, quantity) end end end purchaseRods() task.delay(1, purchaseRods) end }) Tab:AddSection({Name = "Buy any item"}) local itemsFolder = game:GetService("ReplicatedStorage").resources.items.items local itemOptions = {} if itemsFolder then for _, item in ipairs(itemsFolder:GetChildren()) do if item:IsA("Folder") then table.insert(itemOptions, item.Name) end end else warn("Items folder not found") end local selectedItem = itemOptions[1] or "None" local selectedAmount = 1 Tab:AddDropdown({ Name = "Item", Default = selectedItem, Options = itemOptions, Callback = function(value) selectedItem = value end }) Tab:AddSlider({ Name = "Amount", Min = 1, Max = 100, Default = selectedAmount, Increment = 1, Callback = function(value) selectedAmount = value end }) Tab:AddButton({ Name = "Buy Item", Callback = function() if selectedItem == "None" then OrionLib:MakeNotification({ Name = "Error", Content = "Please select an item first.", Image = "rbxassetid://4483345998", Time = 5 }) return end local purchaseEvent = game:GetService("ReplicatedStorage").events.purchase local itemFolder = game:GetService("ReplicatedStorage").resources.items.items:FindFirstChild(selectedItem) if itemFolder then for i = 1, selectedAmount do purchaseEvent:FireServer(selectedItem, "Item", nil, 1) end OrionLib:MakeNotification({ Name = "Success", Content = "Purchased " .. selectedAmount .. " " .. selectedItem .. "(s).", Image = "rbxassetid://4483345998", Time = 5 }) else OrionLib:MakeNotification({ Name = "Error", Content = "Item not found!", Image = "rbxassetid://4483345998", Time = 5 }) end end })