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
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
if (Player.Tix.Value >= 1.5) then
It detects if it has more Tix than 1.5.