Is their a way I can say 1.5 or More in code?

Im trying to make a Roblox “Economy” Game were you can buy and sell stuff, Is it possible for me to put like

if Player.Tix.Value = 1.5 or inf then

it can be done like

if Player.Tix.Value >= 1.5 then
1 Like

if (Player.Tix.Value >= 1.5) then

It detects if it has more Tix than 1.5.

1 Like