im currently trying to code a timer, but i need the timer to say “Time Alive: (int value here)” but idk how to code a value inside a text script
2 Likes
Put two dots after “Time Alive:”
local timer = game.Workspace.Values.Time
while true do
script.Parent.Text = "Time Alive:".. timer.Value
wait(0.01)
end
You could have looked for other sources of information, before asking on the Developer forum.
1 Like