If IntValue.Value == 10 then -- Not working as expected?
Hello, i have a problem that i can't seem to figure out, and this has been a problem for quite a while now, but i decided to ask for help this time!
Anyways, here's the whole script and where everything is located.
This Script Is Located In game.ServerScriptService.
-- DataStoring Two IntValues
--Everything works fine with this code, nothing wrong with it, just going to put it here incase there has to be anything changed.
01 | local DataStoreService = game:GetService( "DataStoreService" ) |
02 | local myDataStore = DataStoreService:GetDataStore( "myDataStoreNew" ) |
04 | game.Players.PlayerAdded:Connect( function (player) |
06 | local leaderstats = Instance.new( "Folder" ) |
07 | leaderstats.Name = "leaderstats" |
08 | leaderstats.Parent = player |
10 | local Cash = Instance.new( "IntValue" ) |
12 | Cash.Parent = leaderstats |
14 | local XP = Instance.new( "IntValue" ) |
16 | XP.Parent = leaderstats |
20 | local playerUserId = "Player_" ..player.UserId |
23 | local success, errormessage = pcall ( function () |
24 | data = myDataStore:GetAsync(playerUserId) |
30 | print ( "Player data successfully loaded!" ) |
32 | print ( "There was an error whilst loading player data!" ) |
39 | game.Players.PlayerRemoving:Connect( function (player) |
41 | local playerUserId = "Player_" ..player.UserId |
43 | local cashData = player.leaderstats.Cash.Value |
44 | local xpData = player.leaderstats.XP.Value |
46 | local success, errormessage = pcall ( function () |
47 | myDataStore:SetAsync(playerUserId, cashData, xpData) |
50 | print ( "Player data successfully saved!" ) |
52 | print ( "There was an error whilst saving player data!" ) |
This Script Is Located In : game.StarterPlayer.StarterPlayerScripts.
1 | local player = game.Players.LocalPlayer |
5 | if player.leaderstats.XP.Value = = 10 then |
6 | print ( "Player has successfully reached 10 XP!" ) |
Thanks for reading through! Hope you can resolve this issue that i'm having.