Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---hey guys this script allows you to get money
- ---every 5 seconds but yeah this script only works on
- ----games that have money/ that you can get money on
- -----and it dont work if the thing is not titled as money
- ----so like jailbreak mad city and more...
- function onPlayerEntered(newPlayer)
- local leaderstats = Instance.new("IntValue")
- leaderstats.Name = "leaderstats"
- local cash = Instance.new("IntValue")
- cash.Name = "Money"
- cash.Value = 1000000
- cash.Parent = leaderstats
- leaderstats.Parent = newPlayer
- while true do
- wait(5)
- cash.Value = cash.Value + 100000
- end
- end
- game.Players.PlayerAdded:connect(onPlayerEntered)
Add Comment
Please, Sign In to add comment