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

Value status doesn't change?

Asked by 4 years ago
Edited 4 years ago

(This is a normal script, not a LocalScript)

Okay so, I'm trying to make a script so that you can click a gas can and it changes your value, if your value is changed, you can fuel something. I put this script in StarterCharacterScripts so that it creates a value when the player joins. Code:

1local Player = game.Players.LocalPlayer
2 
3local Value = Instance.new("BoolValue")
4 
5Value.Parent = Player
6Value.Name = "HasGas"
7Value.Value = false

But, the problem isn't with the value. I'm trying to make the value change when you click a button, here's my code:

1local Player = game.Players.LocalPlayer
2local value = Player:WaitForChild("HasGas")
3 
4script.Parent.ClickDetector.MouseClick:Connect(function()
5value.Value = true
6end)

I get an error with this; here's the error: "attempt to index nil with WaitForChild"

Did I type or do something wrong? Thanks, and if you can help, that would be greatly appreciated.

0
Is this second script a Script or a LocalScript? DragonSpawner12 61 — 4y
0
Script, its in a part CoolBlueJay000 48 — 4y

2 answers

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

Several things wrong here. First, you can't use localplayer in a server script. Second, i'd recommend putting the first script into serverscript service.

Try this script out and see if it works

put this script in serverscriptservice

1game.Players.PlayerAdded:connect(function(plr)
2    plr.CharacterAdded:Connect(function(chr)
3        local Value = Instance.new("BoolValue")
4        Value.Parent = plr
5        Value.Name = "HasGas"
6        Value.Value = false
7    end)
8end)

put this script in button

1local value = Player:WaitForChild("HasGas")
2 
3script.Parent.ClickDetector.MouseClick:Connect(function(player)
4local value = Player:WaitForChild("HasGas")
5value.Value = true
6end)
Ad
Log in to vote
0
Answered by 4 years ago

Your problem is that you are creating the value on the client (local script), and because the server can't see the stuff that the client is making, it is returning nil. To fix this, you should make the bool value on the server (in a Script).

Answer this question