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

If IntValue.Value == 10 then -- Not working as expected?

Asked by 4 years ago

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.

01local DataStoreService = game:GetService("DataStoreService")
02local myDataStore = DataStoreService:GetDataStore("myDataStoreNew")
03 
04game.Players.PlayerAdded:Connect(function(player)
05 
06    local leaderstats = Instance.new("Folder")
07    leaderstats.Name = "leaderstats"
08    leaderstats.Parent = player
09 
10    local Cash = Instance.new("IntValue")
11    Cash.Name = "Cash"
12    Cash.Parent = leaderstats
13 
14    local XP = Instance.new("IntValue")
15    XP.Name = "XP"
View all 55 lines...

This Script Is Located In : game.StarterPlayer.StarterPlayerScripts.

1local player = game.Players.LocalPlayer
2 
3 
4wait(3) -- Making sure the player has loaded otherwise an error will pop up
5if player.leaderstats.XP.Value == 10 then
6    print("Player has successfully reached 10 XP!")
7end

Thanks for reading through! Hope you can resolve this issue that i'm having.

1 answer

Log in to vote
0
Answered by 4 years ago

Yes, i found the problem! It was quite silly!

01local player = game.Players.LocalPlayer
02 
03 
04wait(3) -- Making sure the player has loaded otherwise an error will pop up
05while wait() do
06    if player.leaderstats.XP.Value == 10 then
07        print("Player has successfully reached 10 XP!")
08        break
09    end
10end

FIX : Adding a while loop to make sure its endlessly checking if the XP.Value == 10.

0
You can also do repeat wait() until player and player.Character to wait for the player to load then use changed event to check instead of loop... Feelings_La 399 — 4y
0
or do: while player.leaderstats.XP.Value <= 10 and wait() do print("Player has successfully reached 10 XP!") break end papasherms 168 — 4y
Ad

Answer this question