xvc200

color game

Apr 18th, 2025 (edited)
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. --[[
  2. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4. local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  5. local Window = Library:NewWindow("Script")
  6.  
  7. local Tab = Window:NewSection("actual infinite version")
  8.  
  9. Tab:CreateButton("Inf Coins", function()
  10.  
  11. local args = {
  12. [1] = "Cash",
  13. [2] = 253143542363457567
  14. }
  15.  
  16. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("AddRewardEvent"):FireServer(unpack(args))
  17.  
  18. end)
  19.  
  20.  
  21. Tab:CreateButton("Inf Gold Bombs 💀", function()
  22.  
  23. local args = {
  24. [1] = "Gold Bombs",
  25. [2] = 253143542363457567
  26. }
  27.  
  28. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("AddRewardEvent"):FireServer(unpack(args))
  29. end)
  30.  
  31. Tab:CreateButton("Inf Bombs 💀", function()
  32.  
  33. local args = {
  34. [1] = "Bombs",
  35. [2] = 253143542363457567
  36. }
  37.  
  38. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("AddRewardEvent"):FireServer(unpack(args))
  39. end)
  40.  
  41. Tab:CreateButton("Inf Spins", function()
  42.  
  43. local args = {
  44. [1] = "Spins",
  45. [2] = 253143542363457567
  46. }
  47.  
  48. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("AddRewardEvent"):FireServer(unpack(args))
  49. end)
  50.  
  51.  
  52. Tab:CreateButton("Get best trail", function()
  53.  
  54. local args = {
  55. [1] = "Rainbow",
  56. [2] = 0
  57. }
  58.  
  59. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyTrailEvent"):FireServer(unpack(args))
  60. end)
  61.  
  62. Tab:CreateButton("Get all skins", function()
  63.  
  64. local args = {
  65. [1] = "Blank",
  66. [2] = 0
  67. }
  68.  
  69. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuySkinEvent"):FireServer(unpack(args))
  70. end)
  71.  
  72. Tab:CreateButton("Get all skins", function()
  73.  
  74. local skinNames = {
  75. "USA",
  76. "Wood",
  77. "Stone",
  78. "Brick",
  79. "Rock",
  80. "Obsidian",
  81. "Amethyst",
  82. "Magma",
  83. "Lava",
  84. "Gold Ore",
  85. "Diamond Ore",
  86. "Galaxy Ore",
  87. "Diamonds",
  88. "Space",
  89. "Rainbow",
  90. "Meme Dog",
  91. "Meme Cat",
  92. "Hungry Cat",
  93. "Cute Cat",
  94. "Banana Cat",
  95. "Backrooms",
  96. "USA",
  97. "China",
  98. "Brazil",
  99. "Philippines",
  100. "Mexico",
  101. "Japan",
  102. "South Korea",
  103. "Russia",
  104. "Germany",
  105. "France",
  106. "UK",
  107. "India",
  108. "Indonesia",
  109. "Malaysia",
  110. "Thailand",
  111. "Canada",
  112. "Italy",
  113. "Spain",
  114. "Turkey",
  115. "Australia",
  116. "Poland",
  117. "Netherlands",
  118. "Argentina",
  119. "Vietnam",
  120. "Ukraine",
  121. "UAE",
  122. "Singapore",
  123. "Switzerland",
  124. "Sweden",
  125. "Pakistan",
  126. "Egypt",
  127. "Colombia",
  128. "Romania",
  129. "Peru",
  130. "Chile",
  131. "Bangladesh",
  132. "Belgium",
  133. "Portugal",
  134. "Austria",
  135. "Czechia",
  136. "Norway",
  137. "Denmark",
  138. "Finland",
  139. "Jamaica",
  140. "Ireland",
  141. "Serbia",
  142. "New Zealand",
  143. "Greece",
  144. "Scotland",
  145. "Ghana",
  146. "Kenya",
  147. "Blank"
  148. }
  149.  
  150. local replicatedStorage = game:GetService("ReplicatedStorage")
  151. local buySkinEvent = replicatedStorage:WaitForChild("Remotes"):WaitForChild("BuySkinEvent")
  152.  
  153. for _, skinName in ipairs(skinNames) do
  154. local args = {
  155. [1] = skinName,
  156. [2] = 0
  157. }
  158. buySkinEvent:FireServer(unpack(args))
  159. end
  160. end)
  161.  
  162. Tab:CreateButton("Get all colours", function()
  163.  
  164. local trailNames = {
  165. "Red",
  166. "Yellow",
  167. "Blue",
  168. "Green",
  169. "Purple",
  170. "Pink",
  171. "White",
  172. "Black",
  173. "Rainbow"
  174. }
  175.  
  176. local replicatedStorage = game:GetService("ReplicatedStorage")
  177. local buyTrailEvent = replicatedStorage:WaitForChild("Remotes"):WaitForChild("BuyTrailEvent")
  178.  
  179. for _, trailName in ipairs(trailNames) do
  180. local args = {
  181. [1] = trailName,
  182. [2] = 0
  183. }
  184. buyTrailEvent:FireServer(unpack(args))
  185. end
  186. end)
Advertisement
Add Comment
Please, Sign In to add comment