-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLOS.lua
92 lines (83 loc) · 1.9 KB
/
LOS.lua
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
local library = loadstring(game:HttpGet("https://pastebin.com/raw/SKZjdjdj"))();
local Legend = library:CreateSection("Main")
Legend:Label("Legend Of Speed")
Legend:Label("Farm")
local ammount = 100
Legend:Toggle("Gem", function()
while true do
wait(0.5)
for i = 1, ammount do
local args = {
[1] = "collectOrb",
[2] = "Gem",
[3] = "City"
}
game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
end
end
end)
Legend:Toggle("Red Orb", function()
while true do
wait(0.5)
for i = 1, ammount do
local args = {
[1] = "collectOrb",
[2] = "Red Orb",
[3] = "City"
}
game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
end
end
end)
Legend:Toggle("Blue Orb", function()
while true do
wait(0.5)
for i = 1, ammount do
local args = {
[1] = "collectOrb",
[2] = "Blue Orb",
[3] = "City"
}
game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
end
end
end)
Legend:Toggle("Yellow Orb", function()
while true do
for i = 1, ammount do
wait(0.5)
local args = {
[1] = "collectOrb",
[2] = "Yellow Orb",
[3] = "City"
}
game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
end
end
end)
Legend:Toggle("Orange Orb", function()
while true do
wait(0.5)
for i = 1, ammount do
local args = {
[1] = "collectOrb",
[2] = "Orange Orb",
[3] = "City"
}
game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
end
end
end)
Legend:Toggle("Auto Rebirth", function()
while true do
wait(0.5)
local args = {
[1] = "rebirthRequest"
}
game:GetService("ReplicatedStorage").rEvents.rebirthEvent:FireServer(unpack(args))
end
end)
local Legend = library:CreateSection("Credits")
Legend:Label("JoshMods#3657 - Scripting")
Legend:Label("Aztup - UI Library")
library:Ready();