mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 07:00:03 +00:00
Update RateLimit.luau
This commit is contained in:
parent
48d46e4bcb
commit
0bbb32850c
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ function RateLimit.create(Identifier: string, entrance: number?, interval: numbe
|
|||
Event:SetAttribute(Identifier.."_int", interval)
|
||||
else
|
||||
task.spawn(function()
|
||||
while not (Event:GetAttribute(Identifier.."_ent") and Event:GetAttribute(Identifier.."_int")) do
|
||||
while (not Event:GetAttribute(Identifier.."_ent") and not Event:GetAttribute(Identifier.."_int")) do
|
||||
task.wait(0.5)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue