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

How do I make this work with filtering enabled? [closed]

Asked by 7 years ago
01local level = game:GetService("DataStoreService"):GetDataStore("Levels")
02local xp = game:GetService("DataStoreService"):GetDataStore("XP")
03local axp = game:GetService("DataStoreService"):GetDataStore("AXP") -- amount of XP Needed
04 
05function savedata(dataname, playerid, value)
06    game:GetService("DataStoreService"):GetDataStore(dataname):SetAsync(playerid, value)   
07end
08 
09 
10 
11game.Players.PlayerAdded:connect(function(player)
12    local leader = Instance.new("Folder")
13    leader.Name = "leaderstats"
14    leader.Parent = player
15    local levelz = Instance.new("IntValue")
View all 47 lines...
0
If this is a server script, Filtering should not affect it. hiimgoodpack 2009 — 7y
0
But it does. Bryson467 12 — 7y
1
How exactly do you think FE affects this script? What happens differently? BreadyToCrumble 121 — 7y

Closed as Non-Descriptive by adark, hiimgoodpack, Void_Frost, and PyccknnXakep

This question has been closed because its title or content does not adequately describe the problem you are trying to solve.
Please ensure that your question pertains to your actual problem, rather than your attempted solution. That is, you were trying to solve problem X, and you thought solution Y would work, but instead of asking about X when you ran into trouble, you asked about Y.

Why was this question closed?