Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

what does >= mean ?

Asked by 10 years ago

My script is like this I just need to make sure what >= means i'm not a very good scripter.

local l = script.Parent.Parent.Parent.Parent.Parent.Parent.leaderstats

function Click(mouse) if l.Knockouts.Value >= 60 then script.Parent.Parent.Parent.Visible = false end end

1 answer

Log in to vote
0
Answered by
BlueTaslem 18071 Moderation Voter Administrator Community Moderator Super Administrator
10 years ago

>= means larger than or equal to, as in the math symbol;

a >= b

corresponds to the math notation a ? b

My apologies... Scripting helpers isn't allowing me to post the larger than or equal to symbol

Ad

Answer this question