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

Why is this not making the player start with 100$?

Asked by 8 years ago
game.Players.PlayerAdded:connect(function(plr)
    if plr then
        local mplayer = game.Players.LocalPlayer.Player
        if mplayer then
            mplayer.PlayerGui.Cash.TextLabel = "100$"
        end
        end
end)

It is supposed to make a player join with 100$. The 100$ is a text label in a gui and this script won't work I can't find where I went wrong.

1 answer

Log in to vote
0
Answered by 8 years ago

Tip: you don't need to create a LocalPlayer part. This script should work just fine

game.Players.PlayerAdded:connect(function(plr)
    if plr then
            plr.PlayerGui.Cash.TextLabel.Text = "100$"
        end
end)

You also forgot .Text for the TextLabel

Ad

Answer this question