nope nothing work it still same
At least show us the output or explain.
- Where you have the
Update
function, get rid of that and replace it withlocal Update = coroutine.create(function()
- Put a bracket after the corresponding
end
to that function - Put everything within the new coroutine inside of a
while true
loop, but change ātrueā totask.wait(0.8)
- Just below the player added and removing statements, add
coroutine.resume(Update)
By the way Iām on mobile right now so I canāt really tell if thatās formatted right. Let me know if there are any errors or warnings in the output.
this error i got
The script you gave me
this is what happened
I canāt see the error. I can just see āattempt to indexā
instead of task.wait(0.8) try task.wait(0) or task.wait(0.1)
without an task.wait() or wait the while true will make the system exhausted if it does not found any other delay before doing anything