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

How Can I Break This Loop? [SLOVED]

Asked by 10 years ago

Hello!

I need your help to find how to break this loop in line 3 when I release mouse button:

01script.Parent.Equipped:connect(function(mouse)
02    mouse.Button1Down:connect(function()
03        while mouse.Button1Down do
04            wait()
05            if mouse.Target.Name == "DrawBoard" then
06                    local instspr = Instance.new("Part")
07                instspr.Parent = mouse.Target
08                instspr.CFrame = CFrame.new(mouse.Hit.p) * CFrame.new(0, 0.1, 0)
09                instspr.Anchored = true
10                instspr.CanCollide = false
11                instspr.BrickColor = BrickColor.new("Institutional white")
12                instspr.Name = "DrawPix"
13                instspr.FormFactor = Enum.FormFactor.Custom
14                instspr.Size = Vector3.new(0.2, 0.2, 0.2)
15                instspr.BottomSurface = Enum.SurfaceType.Smooth
16                instspr.TopSurface = Enum.SurfaceType.Smooth
17            end
18        end
19    end)
20end)

1 answer

Log in to vote
4
Answered by
SirNoobly 165
10 years ago

A debounce.

01mouse.Button1Down:connect(function()
02    down = true --Setting down to true before the loop starts
03    while down do -- While down is true it will loop
04    --stuff
05    end
06end)
07 
08mouse.Button1Up:connect(function()
09    down = false --When button it released it sets down to false thus breaking the loop
10end)
0
Lol thanks. vincius0000 0 — 10y
0
Works1 vincius0000 0 — 10y
0
Wouldn't you want to put the while loop outside the click event? Perci1 4988 — 10y
0
Yeah if you put it in a function then run that function every time the click event happens. SirNoobly 165 — 10y
Ad

Answer this question