iOSdeveloper

Untitled

Dec 14th, 2024
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  2.  
  3. -- Window or baseplate Make tab or section
  4.  
  5. local Window = Library:NewWindow("Arbix Hub | Nam piece2")
  6.  
  7. -- Section - Section Usefull you don't want ok?
  8.  
  9. local Section = Window:NewSection("Beli ( money )")
  10.  
  11. -- Button Add Scripts in it
  12.  
  13. Section:CreateButton("Get inf money", function()
  14.  
  15. local args = {
  16. [1] = "Buy",
  17. [2] = "wait",
  18. [3] = -9e9
  19. }
  20.  
  21. game:GetService("ReplicatedStorage").Shop:FireServer(unpack(args))
  22.  
  23. end)
  24.  
  25. -- TextBox You can make keysystem
  26.  
  27. Section:CreateTextbox("money giver", function(text)
  28. local args = {
  29. [1] = "Buy",
  30. [2] = "wait",
  31. [3] = -text
  32. }
  33.  
  34. game:GetService("ReplicatedStorage").Shop:FireServer(unpack(args))
  35.  
  36. end)
  37.  
  38.  
  39.  
  40. local Section = Window:NewSection("Fruits")
  41.  
  42. Section:CreateButton("Get Legandry Fruits", function()
  43.  
  44. local args = {
  45. [1] = "Legendary"
  46. }
  47.  
  48. game:GetService("Players").LocalPlayer.PlayerGui.SpinGui.LOL.Spin.Spin.Reward:FireServer(unpack(args))
  49.  
  50. end)
  51.  
  52. Section:CreateTextbox("Eat any fruit", function(text)
  53. workspace:FindFirstChild(text).EatScript.Eat:FireServer()
  54. end)
  55.  
  56. local Section = Window:NewSection("Op skills")
  57.  
  58. Section:CreateButton("I am atomic", function()
  59. game:GetService("ReplicatedStorage").AtomicFolder.Event:FireServer()
  60. end)
  61.  
  62. Section:CreateButton("dark blade skill 1(not works)", function()
  63. workspace.popcatc.darkblade.magmahound.fire:FireServer()
  64. end)
  65.  
  66. Section:CreateButton("dark blade skill 2(not works)", function()
  67. workspace.popcatc.darkblade.eee.fire:FireServer()
  68. end)
Advertisement
Add Comment
Please, Sign In to add comment