How can I erase those unwanted numbers?

Hello! So I want my script to not show that .75 part. I just need that 193m. But I have no idea how can I do that.
image

Here’s the script

while true do
	wait(0.1)
	local mat = game.Workspace.queueposition.Value * 25/60
	script.Parent.Text = "Estimated time: "..mat.."m"
	
end

script.Parent.Text = "Estimated time: "…math.floor(mat)…“m”

1 Like

I’ll test this and I’ll write back to you :slight_smile: Thanks.

Yeah, you just need math.floor() it’ll remove the decimal part from any number. Alternatively you can use math.round() and it’ll round the number to the nearest integer which is more accurate.

2 Likes

Thanks, It did work. I marked your reply as the Solution :smiley:

1 Like

I didn’t know that, I’m kinda bad at scripting. Anyways, thank you for telling me!

You should explore the math library it will be really useful

I’m gonna check it out. Thanks again.