imaRapguy

Don't mind ts

May 3rd, 2025
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/jensonhirst/Orion/main/source')))()
  2.  
  3. --Window
  4.  
  5. local Window = OrionLib:MakeWindow({Name = "Eren Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  6.  
  7. --Tabs
  8.  
  9. local Tab = Window:MakeTab({
  10. Name = "Main",
  11. Icon = "rbxassetid://4483345998",
  12. PremiumOnly = false
  13. })
  14.  
  15.  
  16. Tab:AddButton({
  17. Name = "Get bubble for 0 oil",
  18. Callback = function()
  19. game:GetService("ReplicatedStorage").CharactersPrice.Bubble.Value = 0
  20. end
  21. })
  22.  
  23. Tab:AddButton({
  24. Name = "Get Boxy for 0 oil",
  25. Callback = function()
  26. game:GetService("ReplicatedStorage").CharactersPrice.Boxy.Value = 0
  27. end
  28. })
  29.  
  30.  
  31. Tab:AddButton({
  32. Name = "Get Child for 0 Oil",
  33. Callback = function()
  34. game:GetService("ReplicatedStorage").CharactersPrice.Child.Value = 0
  35. end
  36. })
  37.  
  38. Tab:AddButton({
  39. Name = "Get Cat For 0 Oil",
  40. Callback = function()
  41. game:GetService("ReplicatedStorage").CharactersPrice.Cat.Value = 0
  42. end
  43. })
  44.  
  45. Tab:AddButton({
  46. Name = "Get Goofball for 0 Oil",
  47. Callback = function()
  48. game:GetService("ReplicatedStorage").CharactersPrice.Goofball.Value = 0
  49. end
  50. })
  51.  
  52. Tab:AddButton({
  53. Name = "Get Pastry For 0 Oil",
  54. Callback = function()
  55. game:GetService("ReplicatedStorage").CharactersPrice.Pastry.Value = 0
  56. end
  57. })
  58.  
  59. Tab:AddButton({
  60. Name = "Get strawberry for 0 Oil",
  61. Callback = function()
  62. game:GetService("ReplicatedStorage").CharactersPrice.Strawberry.Value = 0
  63. end
  64. })
  65.  
  66.  
  67. Tab:AddButton({
  68. Name = "Get Peeball For 0 Oil",
  69. Callback = function()
  70. game:GetService("ReplicatedStorage").CharactersPrice.Peeball.Value = 0
  71. end
  72. })
  73.  
  74.  
  75. Tab:AddButton({
  76. Name = "get Tv For 0 Oil",
  77. Callback = function()
  78. game:GetService("ReplicatedStorage").CharactersPrice.TV.Value = 0
  79. end
  80. })
  81.  
Advertisement
Add Comment
Please, Sign In to add comment