Advertisement
imsoepiclol123

slower

Aug 15th, 2023
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.99 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "💵Money Simulator Z💵",
  5. LoadingTitle = "Money Simulator Z",
  6. LoadingSubtitle = "by Vah",
  7. ConfigurationSaving = {
  8. Enabled = true,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "wwwwwwwwwwwwwwwwwwwwwwwwwwwW"
  11. },
  12. Discord = {
  13. Enabled = false,
  14. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  15. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  16. },
  17. KeySystem = true, -- Set this to true to use our key system
  18. KeySettings = {
  19. Title = "Key is 123",
  20. Subtitle = "Key System",
  21. Note = "literally the title",
  22. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  24. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25. Key = {"123"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  26. }
  27. })
  28.  
  29. local MainTab = Window:CreateTab("Main", nil) -- Title, Image
  30.  
  31. local Section = MainTab:CreateSection("Test")
  32.  
  33. local Button = MainTab:CreateButton({
  34. Name = "AutoBoostGen",
  35. Callback = function()
  36. while wait(0.1) do
  37. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("GenerateFaster"):FireServer()
  38. end
  39. end,
  40. })
  41.  
  42. local Button = MainTab:CreateButton({
  43. Name = "AutoCollectGems",
  44. Callback = function()
  45. while wait(0.1) do
  46. local args = {
  47. [1] = 1,
  48. [2] = false
  49. }
  50.  
  51. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("CollectGem"):FireServer(unpack(args))
  52. end
  53. end,
  54. })
  55.  
  56. local Button = MainTab:CreateButton({
  57. Name = "AutoUpgGen1",
  58. Callback = function()
  59. while wait(0.1) do
  60. local args = {
  61. [1] = 1,
  62. [2] = 1,
  63. [3] = false
  64. }
  65.  
  66. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("UpgradeMachine"):FireServer(unpack(args))
  67. end
  68. end,
  69. })
  70.  
  71. local Button = MainTab:CreateButton({
  72. Name = "AutoUpgGen2",
  73. Callback = function()
  74. while wait(0.1) do
  75. local args = {
  76. [1] = 2,
  77. [2] = 1,
  78. [3] = false
  79. }
  80.  
  81. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("UpgradeMachine"):FireServer(unpack(args))
  82. end
  83. end,
  84. })
  85.  
  86. local Button = MainTab:CreateButton({
  87. Name = "AutoUpgGen3",
  88. Callback = function()
  89. while wait(0.1) do
  90. local args = {
  91. [1] = 3,
  92. [2] = 1,
  93. [3] = false
  94. }
  95.  
  96. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("UpgradeMachine"):FireServer(unpack(args))
  97. end
  98. end,
  99. })
  100.  
  101. local Button = MainTab:CreateButton({
  102. Name = "AutoUpgGen4",
  103. Callback = function()
  104. while wait(0.1) do
  105. local args = {
  106. [1] = 4,
  107. [2] = 1,
  108. [3] = false
  109. }
  110.  
  111. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("UpgradeMachine"):FireServer(unpack(args))
  112. end
  113. end,
  114. })
  115.  
  116. local Button = MainTab:CreateButton({
  117. Name = "AutoUpgGen5",
  118. Callback = function()
  119. while wait(0.1) do
  120. local args = {
  121. [1] = 5,
  122. [2] = 1,
  123. [3] = false
  124. }
  125.  
  126. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("UpgradeMachine"):FireServer(unpack(args))
  127. end
  128. end,
  129. })
  130.  
  131. local Button = MainTab:CreateButton({
  132. Name = "AutoUpgGen6",
  133. Callback = function()
  134. while wait(0.1) do
  135. local args = {
  136. [1] = 6,
  137. [2] = 1,
  138. [3] = false
  139. }
  140.  
  141. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("UpgradeMachine"):FireServer(unpack(args))
  142. end
  143. end,
  144. })
  145.  
  146. local Button = MainTab:CreateButton({
  147. Name = "AutoUpgradeWalls",
  148. Callback = function()
  149. while wait(0.1) do
  150. local args = {
  151. [1] = 1,
  152. [2] = false
  153. }
  154.  
  155. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("FactoryUpgrade"):FireServer(unpack(args))
  156. end
  157. end,
  158. })
  159.  
  160. local Button = MainTab:CreateButton({
  161. Name = "AutoBuyLength",
  162. Callback = function()
  163. while wait(0.1) do
  164. local args = {
  165. [1] = 2,
  166. [2] = false
  167. }
  168.  
  169. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("FactoryUpgrade"):FireServer(unpack(args))
  170. end
  171. end,
  172. })
  173.  
  174. local Button = MainTab:CreateButton({
  175. Name = "AutoBuySurface (Gems)",
  176. Callback = function()
  177. while wait(0.1) do
  178. local args = {
  179. [1] = 3,
  180. [2] = false
  181. }
  182.  
  183. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("FactoryUpgrade"):FireServer(unpack(args))
  184. end
  185. end,
  186. })
  187.  
  188. local Button = MainTab:CreateButton({
  189. Name = "AutoBuyFloors (expensive)",
  190. Callback = function()
  191. while wait(0.1) do
  192. local args = {
  193. [1] = 4,
  194. [2] = false
  195. }
  196.  
  197. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("FactoryUpgrade"):FireServer(unpack(args))
  198. end
  199. end,
  200. })
  201.  
  202. local Button = MainTab:CreateButton({
  203. Name = "Auto Buy After Prestige 1",
  204. Callback = function()
  205. while wait(0.1) do
  206. local args = {
  207. [1] = 1,
  208. [2] = false
  209. }
  210.  
  211. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMachine"):FireServer(unpack(args))
  212. end
  213. end,
  214. })
  215.  
  216. local Button = MainTab:CreateButton({
  217. Name = "Auto Buy After Prestige 2",
  218. Callback = function()
  219. while wait(0.1) do
  220. local args = {
  221. [1] = 2,
  222. [2] = false
  223. }
  224.  
  225. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMachine"):FireServer(unpack(args))
  226. end
  227. end,
  228. })
  229.  
  230. local Button = MainTab:CreateButton({
  231. Name = "Auto Buy After Prestige 3",
  232. Callback = function()
  233. while wait(0.1) do
  234. local args = {
  235. [1] = 3,
  236. [2] = false
  237. }
  238.  
  239. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMachine"):FireServer(unpack(args))
  240. end
  241. end,
  242. })
  243.  
  244. local Button = MainTab:CreateButton({
  245. Name = "Auto Buy After Prestige 4",
  246. Callback = function()
  247. while wait(0.1) do
  248. local args = {
  249. [1] = 4,
  250. [2] = false
  251. }
  252.  
  253. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMachine"):FireServer(unpack(args))
  254. end
  255. end,
  256. })
  257.  
  258. local Button = MainTab:CreateButton({
  259. Name = "Auto Buy After Prestige 5",
  260. Callback = function()
  261. while wait(0.1) do
  262. local args = {
  263. [1] = 5,
  264. [2] = false
  265. }
  266.  
  267. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMachine"):FireServer(unpack(args))
  268. end
  269. end,
  270. })
  271.  
  272. local Button = MainTab:CreateButton({
  273. Name = "Auto Buy After Prestige 6",
  274. Callback = function()
  275. while wait(0.1) do
  276. local args = {
  277. [1] = 6,
  278. [2] = false
  279. }
  280.  
  281. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMachine"):FireServer(unpack(args))
  282. end
  283. end,
  284. })
  285.  
  286. local Button = MainTab:CreateButton({
  287. Name = "Buy More Machines 1",
  288. Callback = function()
  289. while wait(0.1) do
  290. local args = {
  291. [1] = 1,
  292. [2] = 1,
  293. [3] = false
  294. }
  295.  
  296. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMoreMachines"):FireServer(unpack(args))
  297. end
  298. end,
  299. })
  300.  
  301. local Button = MainTab:CreateButton({
  302. Name = "Buy More Machines 2",
  303. Callback = function()
  304. while wait(0.1) do
  305. local args = {
  306. [1] = 2,
  307. [2] = 1,
  308. [3] = false
  309. }
  310.  
  311. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMoreMachines"):FireServer(unpack(args))
  312. end
  313. end,
  314. })
  315.  
  316. local Button = MainTab:CreateButton({
  317. Name = "Buy More Machines 3",
  318. Callback = function()
  319. while wait(0.1) do
  320. local args = {
  321. [1] = 3,
  322. [2] = 1,
  323. [3] = false
  324. }
  325.  
  326. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMoreMachines"):FireServer(unpack(args))
  327. end
  328. end,
  329. })
  330.  
  331. local Button = MainTab:CreateButton({
  332. Name = "Buy More Machines 4",
  333. Callback = function()
  334. while wait(0.1) do
  335. local args = {
  336. [1] = 4,
  337. [2] = 1,
  338. [3] = false
  339. }
  340.  
  341. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMoreMachines"):FireServer(unpack(args))
  342. end
  343. end,
  344. })
  345.  
  346. local Button = MainTab:CreateButton({
  347. Name = "Buy More Machines 5",
  348. Callback = function()
  349. while wait(0.1) do
  350. local args = {
  351. [1] = 5,
  352. [2] = 1,
  353. [3] = false
  354. }
  355.  
  356. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMoreMachines"):FireServer(unpack(args))
  357. end
  358. end,
  359. })
  360. local Button = MainTab:CreateButton({
  361. Name = "Buy More Machines 6",
  362. Callback = function()
  363. while wait(0.1) do
  364. local args = {
  365. [1] = 6,
  366. [2] = 1,
  367. [3] = false
  368. }
  369.  
  370. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BuyMoreMachines"):FireServer(unpack(args))
  371. end
  372. end,
  373. })
  374.  
  375. local Button = MainTab:CreateButton({
  376. Name = "Auto Boost Gem",
  377. Callback = function()
  378. while wait(0.1) do
  379. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("BoostGem"):FireServer()
  380. end
  381. end,
  382. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement