talk trash

public
vxpreen Jun 30, 2024 Never 56
Clone
Plaintext paste1.txt 63 lines (50 loc) | 1.75 KB
1
-- loadstring(game:HttpGet("https://pastecode.dev/raw/a09y90yz/paste1.txt"))()
2
3
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
4
5
local player = game.Players.LocalPlayer
6
local event = game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest
7
local chatDelay = 0 -- Default delay is 0 seconds
8
9
local Window = Library:NewWindow("Window")
10
local Section = Window:NewSection("Chat Buttons")
11
12
-- Textbox for changing the delay between chat messages
13
Section:CreateTextbox("Chat Delay (seconds)", function(text)
14
local delay = tonumber(text)
15
if delay then
16
chatDelay = delay
17
end
18
end)
19
20
-- Function to send chat messages with a delay
21
local function sendChatMessage(message, count)
22
for i = 1, count do
23
event:FireServer(message, "All")
24
wait(chatDelay)
25
end
26
end
27
28
-- Button to chat "EZ" three times
29
Section:CreateButton("EZ", function()
30
sendChatMessage("EZ", 3)
31
end)
32
33
-- Button to chat "BASURA" then "BASURAA"
34
Section:CreateButton("BASURA", function()
35
sendChatMessage("BASURA", 1)
36
sendChatMessage("BASURAA", 1)
37
end)
38
39
-- Button to chat "LOL" one time
40
Section:CreateButton("LOL", function()
41
sendChatMessage("LOL", 1)
42
end)
43
44
-- Button to chat "MALDHITO BOTT" one time
45
Section:CreateButton("MALDHITO BOTT", function()
46
sendChatMessage("MALDHITO BOTT", 1)
47
sendChatMessage("LOLL", 1)
48
end)
49
50
Section:CreateButton("GET BETTER LOL", function()
51
sendChatMessage("GET BETTER LOL", 1)
52
end)
53
54
Section:CreateButton("LOWER", function()
55
sendChatMessage("LOWER", 1)
56
end)
57
58
59
game.StarterGui:SetCore("SendNotification", {
60
Title = "Credits: Vxpreen",
61
Text = "soulreavers._13 on discord",
62
Duration = 8
63
})