Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Hello, my Worker Points script doesn't give you points. Can someone help me fix?

Asked by
ghxstlvty 133
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.

01--] Make sure you have your game published and API turned on before you test, if it is not published you will not see it and in output it will say "Can't access datastore blah blah"
02local MarketplaceService = game:GetService("MarketplaceService")
03local Players = game:GetService("Players")
04local DataStoreService = game:GetService("DataStoreService")
05local PointsStore = DataStoreService:GetDataStore("KrogerPoints") -- Keep this name as your own and change if you want to reset point leaderboards.
06-- If you change the name of the datastore the points will reset.
07 
08local GamePassx2Id = 7020772 -- Replace these with your two gamepass ID's
09local GamePassx5Id = 7020770
10-- The following below are variables, you can change all of these.
11local DefaultPoints = 2 -- How many points you earn each time
12local MinRank = 3 -- The mimimum group rank that can earn points
13local WaitTime = 75 -- The amount of seconds between each point
14local GroupId = 4853203 -- Paste your group ID into here.
15-- This bit is the main script, I would suggest not changing this unless you know ROBLOX LUA. (scripting language)
View all 52 lines...
0
put your codes inbetween the curly things. bluzorro 417 — 5y
0
SOLVED ghxstlvty 133 — 5y

1 answer

Log in to vote
0
Answered by
ghxstlvty 133
5 years ago

SOLVED

Ad

Answer this question