I made a local script that uses gui to show a value in the player, this value is a number value and whenever its changed the number value gets like, lots of decimals and makes the gui look not that good so i want to make it so the number value is rounded up to the nearest 2 decimals in the gui, but the real number value is still all those decimals its just changed in the gui. how can i do this? this is my script
local player = game.Players.LocalPlayer
local tweenservice = game:GetService("TweenService")
local PointMultiply = player:WaitForChild("PointMultiply")
local player = game.Players.LocalPlayer
local enableevent = game.ReplicatedStorage.Remotes.PEnableEvent
local playergui = player:FindFirstChild("PlayerGui")
while task.wait() do
script.Parent.Text = "x".. tostring(PointMultiply.Value)
end