- What do you want to achieve? I want my Local script to be able to interact with a NumberValue i put into the Player.

- What is the issue? My local script can’t see it
- What solutions have you tried so far? The explorer shows that the NumberValue is there from both server side and local side, so idk what to do about it.
What’s the code? We can’t find a solution if we don’t know the script.
sorry i forgot to add the screnshots -.-, i edited it tho
It’s likely because you fire the event and immediately check the children of the Player without giving it time to make the instance. Try waiting a frame by adding game:GetService("RunService").Heartbeat:Wait() before the local children line
1 Like
You probably use a server script to insert the number value into the player right? If so then it might take a while until the value is actually inside the player and the local script fires too fast.
local value = game.Players.LocalPlayer:WaitForChild("your number value name")
print (value)
1 Like
Yep, it worked. Sorry for the stupid question
1 Like

