How Can I Break This Loop? [SLOVED]
Hello!
I need your help to find how to break this loop in line 3 when I release mouse button:
01 | script.Parent.Equipped:connect( function (mouse) |
02 | mouse.Button 1 Down:connect( function () |
03 | while mouse.Button 1 Down do |
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 = Vector 3. new( 0.2 , 0.2 , 0.2 ) |
15 | instspr.BottomSurface = Enum.SurfaceType.Smooth |
16 | instspr.TopSurface = Enum.SurfaceType.Smooth |