How exactly do I make a comma in a number? [closed]
I'm trying to make a comma in a number (250436186) but I want it to say 250,436,186. I know I can use If statements, But I want like the text to change...
Heres what I got (With IF STATEMENTS)
1 | local Text = game.Workspace.Sign.Gui.TEXT |
3 | if Text.Text = = "250436186" then |
4 | Text.Text = "250,436,186" |
But What if I wanted a For i statement?
That's what I'm trying...
Heres what I got
1 | local Text = game.Workspace.Sign.Gui.TEXT |
3 | for i = 1000 , 600000000 , 554 do |
I'm trying to add a comma into The I statement
That's all I'm doing...
Marked as Duplicate by LukeSmasher, DeveloperSolo, and hiimgoodpack
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?