I need this loop to work so that he drops the block multiple times but it doesnt loop and says "attempt to call a nil value" pls help
01 | function bloc() |
02 | local count = 1000 |
03 | while count = = 1000 do |
04 | local gb = script.Parent.Health |
05 | local mp = game.Lighting.money |
06 | if gb < = 29999 then |
07 | wait( 2 ) |
08 | mp:Clone() |
09 | mp.Parent = game.Workspace |
10 | mp.Position = script.Parent.Parent.HumanoidRootPart.Position |
11 | end |
12 | end |
13 | script.Parent.HealthChanged:Connect(bloc) |
14 | end |
Hello.
Issues:
You attempted to connect your function inside the function you were trying to connect.
You didn't create a variable for the cloned mp, so you'd be changing the parent of the money in Lighting
, not the clone of it.
You'd need a coroutine so the script wouldn't get stuck in the while count == 1000
loop.
Improvments:
Use DataModel:GetService() instead of using the conditional dot operator.
Use local
before indexing your function.
Set the mp's position before parenting it.
Name the function more correctly so you don't get confused on what function is what.
Fixed code:
01 | local function onHealthChanged() |
02 | local count = 1000 |
03 |
04 | coroutine.wrap( function () |
05 | while count = = 1000 do |
06 | local gb = script.Parent.Health |
07 | local mp = game:GetService( "Lighting" ).money |
08 |
09 | if gb < = 29999 then |
10 | wait( 2 ) |
11 |
12 | local clonedMp = mp:Clone() |
13 | clonedMp.Position = script.Parent.Parent.HumanoidRootPart.Position |
14 | clonedMp.Parent = workspace |
15 | end |
16 | end |
17 | end )() |
18 | end |
19 |
20 | script.Parent.HealthChanged:Connect(onHealthChanged) |
Please accept and upvote this answer if it helped!
One thing I see is that you called your function in the function you wanted to call the proper script is
01 | function bloc() |
02 | local count = 1000 |
03 | while count = = 1000 do |
04 | local gb = script.Parent.Health |
05 | local mp = game.Lighting.money |
06 | if gb < = 29999 then |
07 | wait( 2 ) |
08 | mp:Clone() |
09 | mp.Parent = game.Workspace |
10 | mp.Position = script.Parent.Parent.HumanoidRootPart.Position |
11 | end |
12 | end |
13 |
14 | end |
15 | while true do |
16 | script.Parent.HealthChanged:Connect(bloc) |
17 | end |
Try this:
01 | while (count) = = 1000 do |
02 | local function bloc() |
03 | local count = 1000 |
04 | local gb = script.Parent.Health |
05 | local mp = game.Lighting.money |
06 | if gb < = 29999 then |
07 | coroutine.wrap( function () |
08 | wait( 2 ) |
09 | mp:Clone() |
10 | mp.Parent = game.Workspace |
11 | mp.Position = script.Parent.Parent.HumanoidRootPart.Position |
12 | end |
13 | end |
14 |
15 | end ) () |
16 | end |
17 | script.Parent.HealthChanged:Connect(bloc) |