Help on how to use

Hey! so im currently making something that display the player count of the game
And i want to make it so it displays Player Count = (PlayerCount) / 24

And for that i need to use . . to separate Player Count = and / 24 from the player count
Can anyone help me?

1 Like

"Player Count = " ..PlayerCount / 24

1 Like

Oh sooo . . is actually together? and what does the " do?

“” is to make the words Player Count a string, then .. attaches the variable to the string

1 Like
local String = "Player Count: "..#game.Players:GetPlayers().." / 24"

Your solution would be attempting to divide “PlayerCount” by 24, I’m not sure if that’s intentional or not (I assume not).