I have this script here that when you level up, it SHOULD award a Playerpoint. There is about 300K playerpoints available in this game, why won;t it award any?
if xp.Value > 69 then xp.Value = xp.Value - 70 xp.Value = xp.Value + (xp.Value * 2) levels.Value = levels.Value + 1 local pps = game:GetService("PointsService") if pps:GetAwardablePoints() >= 1 then pps:AwardPoints(g.userId, 1) end end
Is it a localscript or a normal script?