how to round numbers in roblox code example
Example 1: how to round numbers roblox studio
player.PlayerGui.Stats.Frame.Upgrades.UpgradeSpeed.Text = math.floor((player.Stats.Speed.Value / 100)) * 100
Example 2: how to round numbers roblox studio
local Number = 0 -- put your number here
TextLabel.Text = string.format('%.2f%% of Speed', Number)