#Why is it this not the displaying the amount of plasma on the gui thingy

1 messages · Page 1 of 1 (latest)

neat nebula
#

local Players = game:GetService("Players")

local gui = script.Parent

gui.Currencies.PlasmaDisplay.PlasmaDisplaying.Text = tostring(Players.LocalPlayer.Plasma.Value)

local plasmaValue = Players.LocalPlayer.Plasma
plasmaValue.Changed:Connect(function)
gui.Currencies.PlasmaDisplay.PlasmaDisplaying.Text = tostring(plasmaValue.Value)
end)