I want to display a value on a script, here’s the value
here’s the text script:
typewrite(dialog, "It'll be "..money.."$", 0.05)
local money = workspace.AddedMoney.Value
i added a script too that changes the “money value” to the value in the workspace when it changes
workspace.AddedMoney.Changed:Connect(function()
money = workspace.AddedMoney.Value
end)
the value seems to be displaying correctly in the output
but, the text doesn’t change
Can anyone help?