I have this line in a script that i want to act like a greater than or equal to sign (Like in aglebra). Just wanted to know if it would work.
elseif player.Tools.HighJump.Value > 1 or player.Tools.HighJump.Value == 1 then
This will work. It can be shortened though. elseif player.Tools.HighJump.Value >= 1 then
This instead tests if its greater than or equal to, removing the need for an or.
This is my first answer so I'm sorry if its weird.