-
Notifications
You must be signed in to change notification settings - Fork 0
/
spam.lua
69 lines (63 loc) · 1.93 KB
/
spam.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
[[ All my homies hate Changed and Kp
Fuck Changed and Kp ]]
-- LOADER --
local curmsg = "[...] - Loading..."
local mtype = "All"
local Event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
Event:FireServer(curmsg, mtype)
wait(1)
curmsg = "[...] - Loaded!"
Event:FireServer(curmsg, mtype)
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
local Window = Library.CreateLib("Boomhub | Custom Spammer", "Ocean")
local Tab1 = Window:NewTab("Bypassed")
local Section = Tab1:NewSection("Bypassed Spammer")
local toggled = false
-- LOADER --
-- MAIN --
Section:NewTextBox("Enter Text Here...", "spam the shit out of it :)))", function(txt)
curmsg = txt
print("[BOT] - Current Spam Text : "..curmsg)
end)
Section:NewToggle("Spam", "", function(state)
if state then
toggled = true
while true do
if toggled == true then
local bypass = curmsg.." | "..math.random(0,200)
wait(1.1)
Event:FireServer(bypass, mtype)
else
break
end
end
else
toggled = false
end
end)
-- MAIN --
-- NORMAL --
local Tab2 = Window:NewTab("Normal")
local Section2 = Tab2:NewSection("Normal Spammer")
local normsg = "Type Here"
local nortoggled = false
Section2:NewTextBox("Enter Text Here...", "spam the shit out of it :)))", function(txt)
normsg = txt
print("[BOT] - Current Spam Text : "..curmsg)
end)
Section2:NewToggle("Spam", "", function(state)
if state then
nortoggled = true
while true do
if nortoggled == true then
wait(1.1)
Event:FireServer(normsg, mtype)
else
break
end
end
else
nortoggled = false
end
end)
-- NORMAL --