Team Counter Script

Hey so uh I was wondering how the hell do people do this, I’m not a scripter of any kind, just wondering how something like this could work on a surface gui yes.

Thank you for the help

image

It looks like that you could just create a lot of Number/IntValues to reference those on the SurfaceGui

Usually if you want the Text to say the amount of a specific thing, you would just do

TextLabel.Text = tostring(workspace.RandomValue.Value)

Since TextLabel.Text requires a String, we have to convert it using the tostring() function

tostring() is just basically a function that converts a Number (1, 50, 600) into a String (“Hello”, “This is a string!”, “A string could be used as a sentence!”)