-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeandsummonaf.lua
More file actions
36 lines (30 loc) · 832 Bytes
/
codeandsummonaf.lua
File metadata and controls
36 lines (30 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
local codes = {
"Visit500k",
"ShadowMonarch",
"Release",
"Sub2AekZaJunior",
"Likes2500",
}
local function inputCode(index)
local args = {
[1] = codes[index],
}
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("UseCode"):FireServer(unpack(args))
end
local currentIndex = 1
local interval = 1
local function inputNextCode()
if currentIndex <= #codes then
inputCode(currentIndex)
currentIndex = currentIndex + 1
wait(interval)
inputNextCode()
else
wait(3)
for i = 1, 10 do
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("SpecialSummonTenRoll"):FireServer()
wait(1)
end
end
end
inputNextCode()