Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. require "cron"  
  2. function MoneyAdder()
  3.     local MoneyRandomization = math.random(5,10)
  4.     for k, v in pairs(player.GetAll()) do
  5.         print("lol u mad? this works")
  6.         lmao.ModifyCredits(v, MoneyRandomization)
  7.     end
  8.     chat.AddText(
  9.     Color(0,255,0), MoneyRandomization.. "Lmao Llama Dollars Have Been Added To Your Shop Account!")
  10.     chat.PlaySound()
  11. end
  12. cron.RegisterJob( "cleanup", MoneyAdder )
  13.  
  14. local conf = {
  15.     Minutes = { 0, 1 }
  16. }
  17. cron.Add( "map_cleanup", conf, "cleanup" )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement