Hello, my Worker Points script doesn't give you points. Can someone help me fix?
Asked by
5 years ago Edited 5 years ago
I am making promotions based off of points for my group, Krogers. But when you get in the game it doesn't give you points even after you stay in the game for like 20 minutes. Here is my script.
02 | local MarketplaceService = game:GetService( "MarketplaceService" ) |
03 | local Players = game:GetService( "Players" ) |
04 | local DataStoreService = game:GetService( "DataStoreService" ) |
05 | local PointsStore = DataStoreService:GetDataStore( "KrogerPoints" ) |
08 | local GamePassx 2 Id = 7020772 |
09 | local GamePassx 5 Id = 7020770 |
11 | local DefaultPoints = 2 |
14 | local GroupId = 4853203 |
16 | game:GetService( "Players" ).PlayerAdded:Connect( function (Player) |
17 | local Folder = Instance.new( "Folder" ,Player) |
18 | Folder.Name = "leaderstats" |
19 | local Points = Instance.new( "IntValue" ,Folder) |
20 | Points.Name = "Worker Points" |
21 | local success, currentPoints = pcall ( function () |
22 | return PointsStore:GetAsync(Player.UserId) |
25 | Points.Value = currentPoints |
27 | local GroupRank = Instance.new( "StringValue" ,Folder) |
28 | GroupRank.Name = "Rank" |
29 | GroupRank.Value = Player:GetRoleInGroup(GroupId) |
30 | local UpdatePoints = coroutine.wrap( function () |
31 | while wait(WaitTime) do |
32 | if Player:GetRankInGroup(GroupId) > = MinRank then |
33 | if MarketplaceService:UserOwnsGamePassAsync(Player.UserId, GamePassx 2 Id) = = true then |
34 | Points.Value = Points.Value + (DefaultPoints* 2 ) |
36 | if MarketplaceService:UserOwnsGamePassAsync(Player.UserId, GamePassx 5 Id) = = true then |
37 | Points.Value = Points.Value + (DefaultPoints* 5 ) |
39 | elseif MarketplaceService:UserOwnsGamePassAsync(Player.UserId, GamePassx 2 Id) and MarketplaceService:UserOwnsGamePassAsync(Player.UserId,GamePassx 5 Id) = = true then |
40 | Points.Value = Points.Value + 7 |
42 | Points.Value = Points.Value + DefaultPoints |
47 | Points.Changed:connect( function () |
49 | PointsStore:SetAsync(Player.UserId, Points.Value) |