- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextBox = Instance.new("TextBox")
- local TextButton = Instance.new("TextButton")
- local msgSendInfo = Instance.new("TextLabel")
- local TextLabel = Instance.new("TextLabel")
- local TextLabel_2 = Instance.new("TextLabel")
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(85, 85, 127)
- Frame.Position = UDim2.new(0.332552671, 0, 0.629629672, 0)
- Frame.Size = UDim2.new(0, 429, 0, 264)
- TextBox.Parent = Frame
- TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.BackgroundTransparency = 0.750
- TextBox.Position = UDim2.new(0.048181355, 0, 0.211781323, 0)
- TextBox.Size = UDim2.new(0, 387, 0, 50)
- TextBox.Font = Enum.Font.SourceSans
- TextBox.PlaceholderText = "ligma"
- TextBox.Text = ""
- TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.TextSize = 14.000
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.fromRGB(100, 100, 127)
- TextButton.Position = UDim2.new(0.266105473, 0, 0.460054487, 0)
- TextButton.Size = UDim2.new(0, 200, 0, 50)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Send"
- TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.TextSize = 14.000
- msgSendInfo.Name = "msgSendInfo"
- msgSendInfo.Parent = Frame
- msgSendInfo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- msgSendInfo.BackgroundTransparency = 1.000
- msgSendInfo.Position = UDim2.new(0.417014688, 0, 0.0376014113, 0)
- msgSendInfo.Size = UDim2.new(0, 106, 0, 30)
- msgSendInfo.Font = Enum.Font.SourceSans
- msgSendInfo.Text = "Msg To Send:"
- msgSendInfo.TextColor3 = Color3.fromRGB(255, 255, 255)
- msgSendInfo.TextSize = 14.000
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Position = UDim2.new(0.250978559, 0, 0.648204207, 0)
- TextLabel.Size = UDim2.new(0, 213, 0, 50)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "______________________________________________________________________"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextSize = 14.000
- TextLabel_2.Parent = ScreenGui
- TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel_2.BackgroundTransparency = 1.000
- TextLabel_2.Position = UDim2.new(0.341139734, 0, 0.89259249, 0)
- TextLabel_2.Size = UDim2.new(0, 418, 0, 36)
- TextLabel_2.Font = Enum.Font.SourceSans
- TextLabel_2.Text = "Bolts#8888 for the script - Storm.#1020 for the gui"
- TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel_2.TextSize = 14.000
- local function LWDWP_fake_script() -- TextButton.LocalScript
- local script = Instance.new('LocalScript', TextButton)
- script.Parent.MouseButton1Click:Connect(function()
- local message = script.Parent.Parent.TextBox.Text
- math.randomseed(tick())
- local ChatMain = require(game:GetService("Players").LocalPlayer.PlayerScripts.ChatScript.ChatMain)
- local function bypass()
- ChatMain.MessagePosted:fire("hi"..math.random(100000,1000000))
- ChatMain.MessagesChanged:fire(math.random(100000,1000000))
- end
- for v in message:gmatch"." do
- wait(0.4)
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v, "All")
- wait(0.4)
- bypass()
- end
- end)
- end
- coroutine.wrap(LWDWP_fake_script)()