Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- script made by isibaby55
- amount = 1 -- How much points a person will get awarded
- timedelay = 2 -- how many seconds they have to stay in the game to get the points
- currencyname = "Points" -- Currency's Name
- while true do
- wait(timedelay)
- for i, v in pairs (game.Players:GetPlayers()) do
- if v:FindFirstChild("leaderstats") and v then
- v.leaderstats[currencyname].Value = v.leaderstats[currencyname].Value + amount
- end
- end
- end
- -- Take it if you want to I don't really care if you take it :/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement