Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- — script is open source pls give credit By Arbix ( TOUKA)
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
- -- Window or baseplate Make tab or section
- local Window = Library:NewWindow("Arbix Hub | Nam piece2")
- -- Section - Section Useful you don't want ok?
- local Section = Window:NewSection("Beli (money)")
- -- Button Add Scripts in it
- Section:CreateButton("Get inf money", function()
- print("Get inf money button pressed")
- local args = {
- [1] = "Buy",
- [2] = "wait",
- [3] = -9e9
- }
- game:GetService("ReplicatedStorage").Shop:FireServer(unpack(args))
- end)
- -- TextBox You can make keysystem
- Section:CreateTextbox("money giver", function(text)
- local numberValue = tonumber(text) -- Convert input to number
- if numberValue then
- local args = {
- [1] = "Buy",
- [2] = "wait",
- [3] = -numberValue
- }
- game:GetService("ReplicatedStorage").Shop:FireServer(unpack(args))
- else
- print("Invalid input: Please enter a number.")
- end
- end)
- local Section = Window:NewSection("Fruits")
- Section:CreateButton("Get Legendary Fruits", function()
- print("Get Legendary Fruits button pressed")
- local args = {
- [1] = "Legendary"
- }
- game:GetService("Players").LocalPlayer.PlayerGui.SpinGui.LOL.Spin.Spin.Reward:FireServer(unpack(args))
- end)
- Section:CreateTextbox("Eat any fruit", function(text)
- local fruit = workspace:FindFirstChild(text)
- if fruit and fruit:FindFirstChild("EatScript") and fruit.EatScript:FindFirstChild("Eat") then
- fruit.EatScript.Eat:FireServer()
- else
- print("Fruit not found or invalid structure.")
- end
- end)
- local Section = Window:NewSection("Op skills")
- Section:CreateButton("I am atomic", function()
- print("I am atomic button pressed")
- game:GetService("ReplicatedStorage").AtomicFolder.Event:FireServer()
- end)
- Section:CreateButton("dark blade skill 1 (not works)", function()
- local darkblade = workspace:FindFirstChild("popcatc") and workspace.popcatc:FindFirstChild("darkblade")
- if darkblade and darkblade:FindFirstChild("magmahound") and darkblade.magmahound:FindFirstChild("fire") then
- darkblade.magmahound.fire:FireServer()
- else
- print("Dark blade skill 1 not found or invalid structure.")
- end
- end)
- Section:CreateButton("dark blade skill 2 (not works)", function()
- local darkblade = workspace:FindFirstChild("popcatc") and workspace.popcatc:FindFirstChild("darkblade")
- if darkblade and darkblade:FindFirstChild("eee") and darkblade.eee:FindFirstChild("fire") then
- darkblade.eee.fire:FireServer()
- else
- print("Dark blade skill 2 not found or invalid structure.")
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment