0% found this document useful (0 votes)
2K views4 pages

FE Chat Bypass DrawOrOof

This script creates a GUI for a Roblox game that allows players to send messages and spam messages with a specified delay. It includes features such as a close button, minimize button, and a warning label indicating the GUI only works in the lobby. The script also includes a notification to check out a YouTube channel and uses various services like TweenService and ReplicatedStorage.

Uploaded by

kaziczusiek
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views4 pages

FE Chat Bypass DrawOrOof

This script creates a GUI for a Roblox game that allows players to send messages and spam messages with a specified delay. It includes features such as a close button, minimize button, and a warning label indicating the GUI only works in the lobby. The script also includes a notification to check out a YouTube channel and uses various services like TweenService and ReplicatedStorage.

Uploaded by

kaziczusiek
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

--[[

WARNING: Heads up! This script has not been verified by ScriptBlox. Use at
your own risk!
]]
-- Services
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local TweenService = game:GetService("TweenService")

-- Player
local player = [Link]

game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "TCES Team",
Text = "Check out [Link]
Duration = 5
})

-- GUI
local gui = [Link]("ScreenGui", player:WaitForChild("PlayerGui"))
[Link] = "BuyPlatformGUI"
[Link] = false

-- Protect GUI (added line)


if syn and syn.protect_gui then
pcall(function()
syn.protect_gui(gui)
end)
end

-- Main Frame (scaled slightly down in height but taller to fit warning)
local mainFrame = [Link]("Frame")
[Link] = [Link](0, 380, 0, 280)
[Link] = [Link](0.5, -190, 0.5, -140)
mainFrame.BackgroundColor3 = [Link](35, 35, 35)
[Link] = 0
[Link] = "MainFrame"
[Link] = true
[Link] = gui

local corner = [Link]("UICorner")


[Link] = [Link](0, 8)
[Link] = mainFrame

local dragDetector = [Link]("UIDragDetector")


[Link] = mainFrame

-- Title
local title = [Link]("TextLabel")
[Link] = "FE Chat Bypass DrawOrOof"
[Link] = [Link]
[Link] = 18
title.TextColor3 = [Link](255, 255, 255)
[Link] = 1
[Link] = [Link](1, -60, 0, 30)
[Link] = [Link](0, 10, 0, 5)
[Link] = [Link]
[Link] = mainFrame
-- Close
local closeBtn = [Link]("TextButton")
[Link] = "X"
[Link] = [Link]
[Link] = 20
closeBtn.TextColor3 = [Link](255, 255, 255)
closeBtn.BackgroundColor3 = [Link](170, 60, 60)
[Link] = [Link](0, 30, 0, 30)
[Link] = [Link](1, -35, 0, 5)
[Link] = mainFrame

local closeCorner = [Link]("UICorner")


[Link] = [Link](0, 6)
[Link] = closeBtn

-- Minimize
local minimizeBtn = [Link]("TextButton")
[Link] = "-"
[Link] = [Link]
[Link] = 24
minimizeBtn.TextColor3 = [Link](255, 255, 255)
minimizeBtn.BackgroundColor3 = [Link](90, 90, 90)
[Link] = [Link](0, 30, 0, 30)
[Link] = [Link](1, -70, 0, 5)
[Link] = mainFrame

local minCorner = [Link]("UICorner")


[Link] = [Link](0, 6)
[Link] = minimizeBtn

-- Input Textbox
local inputBox = [Link]("TextBox")
[Link] = "msg here"
[Link] = [Link]
[Link] = 18
inputBox.TextColor3 = [Link](255, 255, 255)
inputBox.BackgroundColor3 = [Link](50, 50, 50)
[Link] = [Link](0, 340, 0, 40)
[Link] = [Link](0, 20, 0, 45)
[Link] = ""
[Link] = mainFrame

local inputCorner = [Link]("UICorner")


[Link] = [Link](0, 6)
[Link] = inputBox

-- Delay TextBox
local delayBox = [Link]("TextBox")
[Link] = "delay (sec)"
[Link] = [Link]
[Link] = 18
delayBox.TextColor3 = [Link](255, 255, 255)
delayBox.BackgroundColor3 = [Link](40, 40, 40)
[Link] = [Link](0, 100, 0, 40)
[Link] = [Link](0, 20, 0, 95)
[Link] = ""
[Link] = mainFrame

local delayCorner = [Link]("UICorner")


[Link] = [Link](0, 6)
[Link] = delayBox

-- Send Button
local sendBtn = [Link]("TextButton")
[Link] = "Send Message"
[Link] = [Link]
[Link] = 20
sendBtn.TextColor3 = [Link](255, 255, 255)
sendBtn.BackgroundColor3 = [Link](70, 130, 180)
[Link] = [Link](0, 220, 0, 40)
[Link] = [Link](0, 140, 0, 95)
[Link] = mainFrame

local sendCorner = [Link]("UICorner")


[Link] = [Link](0, 6)
[Link] = sendBtn

-- Spam Send Button


local spamBtn = [Link]("TextButton")
[Link] = "Spam Send"
[Link] = [Link]
[Link] = 20
spamBtn.TextColor3 = [Link](255, 255, 255)
spamBtn.BackgroundColor3 = [Link](200, 80, 80)
[Link] = [Link](0, 340, 0, 40)
[Link] = [Link](0, 20, 0, 150)
[Link] = mainFrame

local spamCorner = [Link]("UICorner")


[Link] = [Link](0, 6)
[Link] = spamBtn

-- Warning Label
local warningLabel = [Link]("TextLabel")
[Link] = "⚠️This GUI only works in the lobby⚠️"
[Link] = [Link]
[Link] = 18
warningLabel.TextColor3 = [Link](255, 200, 80)
[Link] = 1
[Link] = [Link](1, 0, 0, 30)
[Link] = [Link](0, 0, 0, 200)
[Link] = [Link]
[Link] = mainFrame

-- States
local minimized = false
local tweenInfo = [Link](0.25, [Link],
[Link])
local spamming = false
local spamThread

-- Helpers
local function setContentVisible(visible)
for _, child in pairs(mainFrame:GetChildren()) do
if not (child == closeBtn or child == minimizeBtn or child ==
dragDetector or child:IsA("UICorner")) then
[Link] = visible
end
end
end

-- Events
sendBtn.MouseButton1Click:Connect(function()
local args = {
[1] = [Link]
}

ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("BuyPlatform"):FireServer(un
pack(args))
end)

spamBtn.MouseButton1Click:Connect(function()
spamming = not spamming
if spamming then
[Link] = "Stop Spam"
spamThread = [Link](function()
local delayTime = tonumber([Link]) or 1
while spamming do
local args = {
[1] = [Link]
}

ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("BuyPlatform"):FireServer(un
pack(args))
[Link](delayTime)
end
end)
[Link](spamThread)
else
[Link] = "Spam Send"
end
end)

closeBtn.MouseButton1Click:Connect(function()
gui:Destroy()
end)

minimizeBtn.MouseButton1Click:Connect(function()
minimized = not minimized
if minimized then
local tween = TweenService:Create(mainFrame, tweenInfo, {Size =
[Link](0, 380, 0, 40)})
tween:Play()
setContentVisible(false)
else
local tween = TweenService:Create(mainFrame, tweenInfo, {Size =
[Link](0, 380, 0, 280)})
tween:Play()
[Link]:Wait()
setContentVisible(true)
end
end)

You might also like