Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Points per min
- -- Put in ServerScriptService
- game.Players.PlayerAdded:Connect(function(player)
- local leaderstats = Instance.new("Folder")
- leaderstats.Name = "leaderstats"
- leaderstats.Parent = player
- local points = Instance.new("IntValue") -- After local change the name to whatever you want
- points.Name = "points" -- Change the word in the "" to the second word on line 8
- points.Value = 0
- points.Parent = leaderstats
- while true do
- points.Value = points.Value+5 -- how many points per min or the time you put in
- wait(60) -- you can change how long til you get points in the ()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement