Ok so I'm making a simple script where on click a part will appear infront of me, move foward, and delete after a distance. (game's like galaga). The issue is I think is it gets caught in the while/do function, disallowing the code to continue.
01 | local cool = 0.75 |
02 | local function firee() |
03 | local bullet = Instance.new( "Part" ) |
04 | bullet.Parent = workspace |
05 | bullet.Size = Vector 3. new( 0.75 , 0.75 , 1.75 ) |
06 | bullet.Position = Vector 3. new(root.Position.X, root.Position.Y, root.Position.Z + 4 ) |
07 | bullet.Anchored = true |
08 | while bullet do |
09 | bullet.Position = bullet.Position + Vector 3. new( 0 , 0 , 1 ) |
10 | wait( 0.001 ) |
11 | if bullet.Position.Z > 100 then |
12 | bullet:Remove() |
13 | end |
14 | end |
15 | end |
When I remove firee() from the script the print works fine but when I insert firee it breaks. I also found that if I remove the while/do function and everything inside it it works (but of course doesn't move then). Help?>
try this
01 | function fire() |
02 | local bullet = Instance.new( "Part" ) |
03 | bullet.Parent = game.Workspace |
04 | bullet.Size = Vector 3. new( 0.75 , 0.75 , 1.75 ) |
05 | bullet.Position = Vector 3. new(root.Position.X, root.Position.Y, root.Position.Z + 4 ) |
06 | bullet.Anchored = true |
07 | if bullet then |
08 | bullet.Position = bullet.Position + UDim 2 ( 0 , 0 , 1 ) |
09 | wait( 0.001 ) |
10 | if bullet.Position.Z > 100 then |
11 | bullet:Remove() |
12 |
13 | end |
14 | end |
15 | end |
16 | end |
17 |
18 | --I believe this will fix your problem-- |
if this does not work i'm truly sorry i don't understand this too much
I finally figured the answer out myself.
01 | mouse.Button 1 Down:Connect( function () |
02 | if debounce = = true then |
03 | debounce = false |
04 | wait(cool) |
05 | debounce = true |
06 | return |
07 | end |
08 | end ) |
09 |
10 | mouse.Button 1 Down:Connect( function () |
11 | if debounce then |
12 | firee() |
13 | end |
14 | end ) |