Hello. I don't know why, but this simple script is having trouble.
1 | plrAmount = #game.Players:GetChildren() |
2 | if not plrAmount > = 8 then |
3 | -- yada yada yada |
4 | end |
Workspace.Boards.Screen.Leaderboard.Holder.Script:2: attempt to compare number and boolean
1 | plrAmount = #game.Players:GetChildren() |
2 | if not (plrAmount > = 8 ) then |
3 | -- yada yada yada |
4 | end |
You not need the not in the if statement.
Here are some examples:
x >= y
-> x is greater or equal to y.
x <= y
-> x is less or equal to y.
x == y
-> x is equal to y.
x < y
-> x is less than y.
x > y
-> x is greater than y.