Advertisement
Gerard_games

Boosts

Jun 21st, 2022
2,523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | None | 0 0
  1. local Tablething = {
  2.     ["Lucky"] = { -- Type
  3.         [1] = 4, -- Duration = Count
  4.         [2] = 2
  5.     },
  6.     ["Super Lucky"] = {
  7.         [1] = 3,
  8.         [2] = 1
  9.     },
  10.     ["Omega Lucky"] = {
  11.         [1] = 1,
  12.         [2] = 1
  13.     },
  14.     ["Big Earner"] = {
  15.         [1] = 3,
  16.         [2] = 3
  17.     },
  18.     ["Super Rich"] = {
  19.         [1] = 1,
  20.         [2] = 1
  21.     },
  22. }
  23.  
  24. for i,v in pairs(Tablething) do
  25.     for a,b in pairs(v) do
  26.         for repeattimes = 1, b do
  27.             game:GetService("ReplicatedStorage").Events.BuyBoost:FireServer(i, a)
  28.         end
  29.     end
  30. end
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement