mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 15:10:03 +00:00
Update RateLimit.luau
This commit is contained in:
parent
ed73b66dc9
commit
0004faf544
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ function RateLimit.create(Identifier: string, entrance: number?, interval: numbe
|
||||||
task.spawn(function()
|
task.spawn(function()
|
||||||
repeat
|
repeat
|
||||||
task.wait(0.5)
|
task.wait(0.5)
|
||||||
until Event:GetAttribute(Identifier.."_ent") or Event:GetAttribute(Identifier.."_int")
|
until (Event:GetAttribute(Identifier.."_ent") and Event:GetAttribute(Identifier.."_int"))
|
||||||
|
|
||||||
entrance = tonumber(Event:GetAttribute(Identifier.."_ent"))
|
entrance = tonumber(Event:GetAttribute(Identifier.."_ent"))
|
||||||
interval = tonumber(Event:GetAttribute(Identifier.."_int"))
|
interval = tonumber(Event:GetAttribute(Identifier.."_int"))
|
||||||
|
|
Loading…
Reference in a new issue