making a GUI that shows the players cash.
local Text = script.Parent Text.Text = game.Players.LocalPlayer.Cash.Value
You can try it doing a new IntValue at the Players.LocalPlayer inside.
local cashValue = Instance.new("IntValue") -- make a new cash value local text = script.Parent -- the textlabel cashValue.Parent = game.Players.LocalPlayer -- the cash value parent is localplayer cashValue.name = "Cash" cashValue.Value = (The starts cash value) -- change this to the starter cash value text.Text = game.Players.LocalPlayer:WaitForChild("Cash").Value -- set the text is the localplayer money value
Hope I helped. Thanks! (And excuse my grammar please)
If it doesn't work, reply to me :)