How do i make number round to .1 (one number after dot)

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    so basically when i collect an model i get a new multi which formula is multi*multi or multi^2 and i use 1.025x as multi in a few models i get smth like 1.34567831235…
  2. What is the issue? Include screenshots / videos if possible!
    1th question
  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I know about math round, but i need it to round to format .1 not to integer

My code:

local RCMultiE = game.Workspace.RemoteEvents.RCMultiE
local MoneyMulti = 1.025
local ClicksMulti = 1.1
RCMultiE.OnServerEvent:Connect(function(player)
	local RCMultiMoney = player.Stats.RCMultiMoney
	local RCMultiClicks = player.Stats.RCMultiClicks
	RCMultiMoney.Value *= math.round(MoneyMulti)
	RCMultiClicks.Value *= ClicksMulti
end)

With math round i can go to only integer numbers, i don’t know any thing which could make number round to .1

math.round(x*n)/n

Where x is your number, and n is the place.

For example: to round 1.4567 to the tenths place, math.round(1.4567*10)/10 = 1.5

Am just dumb (30 lettersssssss)

Okay that works fine thanks! (30 letters)