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)