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

cool down script won't work?

Asked by 5 years ago
Edited 5 years ago

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.

01local cool = 0.75
02local function firee()
03    local bullet = Instance.new("Part")
04    bullet.Parent = workspace
05    bullet.Size = Vector3.new(0.75, 0.75, 1.75)
06    bullet.Position = Vector3.new(root.Position.X, root.Position.Y, root.Position.Z + 4)
07    bullet.Anchored = true
08    while bullet do
09        bullet.Position = bullet.Position + Vector3.new(0, 0, 1)
10        wait(0.001)
11        if bullet.Position.Z > 100 then
12            bullet:Remove()
13        end
14    end
15end
View all 28 lines...

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?>

0
that variable error from formatting is really giving my mind death and im not sure why KDarren12 705 — 5y
0
sorry 'bout that, I fixed it. paperbagstudio 28 — 5y

2 answers

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

try this

01function fire()
02        local bullet = Instance.new("Part")
03    bullet.Parent = game.Workspace
04        bullet.Size = Vector3.new(0.75, 0.75, 1.75)
05        bullet.Position = Vector3.new(root.Position.X, root.Position.Y, root.Position.Z + 4)
06        bullet.Anchored = true
07        if bullet then
08            bullet.Position = bullet.Position + UDim2(0, 0, 1)
09            wait(0.001)
10            if bullet.Position.Z > 100 then
11              bullet:Remove()
12 
13end
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

0
That made it worst, the bullet wouldn't move at all. paperbagstudio 28 — 5y
0
you need to use while bullet do, not if bullet then. Also UDim2 just bring out an error. paperbagstudio 28 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

I finally figured the answer out myself.

01mouse.Button1Down:Connect(function()
02    if debounce == true then
03        debounce = false
04        wait(cool)
05        debounce = true
06        return
07    end
08end)
09 
10mouse.Button1Down:Connect(function()
11    if debounce then
12        firee()
13    end
14end)

Answer this question