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

What is wrong with this loop?

Asked by 9 years ago
01while true do
02    if Vector2.new(Mouse.X, Mouse.Y) > v.AbsolutePosition and Vector2.new(Mouse.X, Mouse.Y) < v.AbsolutePosition + v.AbsoluteSize then
03        v.BackgroundColor = Color3.new(1, 135/255, 135/255)
04        v.Font = Enum.Font.SourceSans
05    else
06        v.BackgroundColor = Color3.new(1, 1, 1)
07        v.Font = Enum.Font.SourceSansLight
08    end
09    game:GetService("RunService").RenderStepped:wait()
10end

So, I know the loop starts, but for some reason at the if statement the loop stops and nothing in the if statements fire. Anyone know what is up with this?

0
any errors? User#5978 25 — 9y
0
No. The loop just stops with no explanation at all. MisaMiner 50 — 9y

Answer this question