Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Block Tycoon", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- local Tab = Window:MakeTab({
- Name = "Duping",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- Tab:AddButton({
- Name = "Aquastone",
- Callback = function()
- local args = {
- [1] = 1,
- [2] = {
- [1] = game:GetService("Players").LocalPlayer.Inventory.Aquastone,
- [2] = 0.5
- }
- }
- game:GetService("ReplicatedStorage").DropItemE:FireServer(unpack(args))
- end
- })
- Tab:AddButton({
- Name = "Aquastone Pillar",
- Callback = function()
- local args = {
- [1] = 1,
- [2] = {
- [1] = game:GetService("Players").LocalPlayer.Inventory.AquastonePillar,
- [2] = 0.5
- }
- }
- game:GetService("ReplicatedStorage").DropItemE:FireServer(unpack(args))
- end
- })
- Tab:AddButton({
- Name = "Aquastone Bricks",
- Callback = function()
- local args = {
- [1] = 1,
- [2] = {
- [1] = game:GetService("Players").LocalPlayer.Inventory.AquastoneBricks,
- [2] = 0.5
- }
- }
- game:GetService("ReplicatedStorage").DropItemE:FireServer(unpack(args))
- end
- })
- OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement