-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.lua
60 lines (53 loc) · 1.67 KB
/
main.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
repeat
wait()
until game.Loaded
task.wait(5)
if game.PlaceId == 5411459567 then
repeat
task.wait(1)
until game.Workspace.Message
end
_G.MinTimer = 60
local function notify(text)
game.StarterGui:SetCore("SendNotification", {
Title = "RZiln's AFK hop",
Duration = 60,
Text = text
})
end
local function serverHop()
if syn then
syn.queue_on_teleport(
'loadstring(game:HttpGet("https://raw.githubusercontent.com/Faisl100/aboody-3/main/main.lua", true))()')
else
queue_on_teleport(
'loadstring(game:HttpGet("https://raw.githubusercontent.com/Faisl100/aboody-3/main/main.lua", true))()')
end
end
if game.GameId == 578392296 then
if game.PlaceId ~= 5411459567 then
notify("Joining AFK World, please")
serverHop()
game:GetService('TeleportService'):Teleport(5411459567)
end
notify("AFK Hop running")
local function timerCheck()
local timer = game.Workspace.Message.Text:split(" ")
local time = tonumber(timer[1])
return time
end
if timerCheck() <= _G.MinTimer then
notify("Waiting for reward")
repeat
task.wait()
until timerCheck() > _G.MinTimer
notify("Server Hopping")
task.wait(1)
serverHop()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RZiln/GayBloxScripts/master/ABA/ServerHop.lua", true))()
else
notify("Server Hopping")
serverHop()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RZiln/GayBloxScripts/master/ABA/ServerHop.lua", true))()
end
end