Advertisement
KronBloxx

Roblox Player Points Script

Mar 17th, 2018
8,406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. -- Made by KronBloxx,
  2. -- if you don't know how to script only change things it tells you to unless you wanna keep it that way
  3.  
  4. local PointsService = Game:GetService("PointsService")
  5.  
  6. game.Players.PlayerAdded:connect(function(player)
  7. while true do
  8. wait(60) -- Change the 60 to change how long it takes to get the points
  9. local pointsToAward = PointsService:GetAwardablePoints()
  10. if ( pointsToAward > 50) then
  11. pcall(function()
  12. PointsService:AwardPoints(player.userId, 1) -- Change the 1 to how many points you want to be awarded
  13. end)
  14. end
  15. end
  16. end)
  17. PointsService.PointsAwarded:connect(function(userId, userBalanceinUni, userBalance)
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement