Advertisement
HowToRoblox

DailySpinSettings

Sep 27th, 2022
1,617
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. local module = {}
  2.  
  3. local spinRewards = { --Repeated numbers = higher chance for that reward to be chosen
  4.     100, 100, 100, 100,
  5.     200, 200, 200,
  6.     500, 500,
  7.     1000
  8. }
  9.  
  10. local spinColours = { --Amount of cash = Colour on wheel
  11.     [100] = Color3.fromRGB(156, 149, 138),
  12.     [200] = Color3.fromRGB(109, 199, 50),
  13.     [500] = Color3.fromRGB(240, 207, 18),
  14.     [1000] = Color3.fromRGB(249, 112, 21),
  15. }
  16.  
  17. module.rewards = spinRewards
  18. module.colours = spinColours
  19.  
  20. return module
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement