local race = Player:WaitForChild("Values").Race.Value local variation = Player:WaitForChild("Values").Variation.Value print(race..variation)
so basically i want the number the race value and the number of the variation value to be together in a text box so like if race's value is 3 and variation value is 1 i want it to print "31"
You have two numbers right now, convert them to a string then concatenate (join them) as shown below:
local race = Player:WaitForChild("Values").Race.Value local variation = Player:WaitForChild("Values").Variation.Value print(tostring(race)..tostring(variation))
Even so, this is unnecessary because you could just do what you did lmao... Look here:
So this entire time you did it right.
Although if you want to add them simple do race+variation