Math.floor returns a number without all of the decimals. To round up we can do math.floor(number + 0.5)
local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
while wait() do
local number = math.floor(0.5 + humanoid.Health/100)
script.Parent.Text = number.." /100"
end