i have tried to use htis script for player points but it just wont work so is theere a way that i can like add player points first or something?
function Add(player) local PointsService = Game:GetService("PointsService") PointsService:AwardPoints(player.userId, 2) end game.Players.PlayerAdded:connect(Add)
game.Players.PlayerAdded:connect(function(plr) points=Game:GetService("PointsService") award=points:GetAwardablePoints() if award>=2 then points:AwardPoints(plr.userId, 2); end end)
I used some scripts from my game, and it looks like it should work