-
Notifications
You must be signed in to change notification settings - Fork 0
/
usageeng.lua
40 lines (32 loc) · 852 Bytes
/
usageeng.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
--[[
Made by AtKnSploits and OnlySploits
--]]
-- English version
local reply = {"Hi","Hello"}
local startermessage = {"What's going on"}
Chat.Chatted:Connect(function(plr,msg)
if msg == "hello" or msg == "Hello" or msg == "hi" or msg == "Hi" then
if not plr == Player then
Bot.Chat(tostring(reply[math.random(1,#reply)]))
end
end
end)
function jmp()
while wait(13) do
Bot.jump()
end
end
function wlk()
while wait(30) do
Bot.walkto(math.random(-900000000,900000000),math.random(-900000000,900000000),math.random(-900000000,900000000)) -- RANDOM WALK
end
end
Bot.Chat(tostring(reply[math.random(1,#reply)]))
wait(2)
Bot.Chat(tostring(startermessage[math.random(1,#startermessage)]))
while wait(13) do
Bot.jump()
end
Bot.antiafk(true)
jmp()
wlk()