Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 4gH3w2s gui V2.70
- local player = game.Players.LocalPlayer
- local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
- gui.Name = "4gH3w2s gui V2.70"
- gui.ResetOnSpawn = false
- -- GUI Frame
- local frame = Instance.new("Frame", gui)
- frame.Size = UDim2.new(0, 260, 0, 620)
- frame.Position = UDim2.new(0, 10, 0.5, -310)
- frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- frame.BorderSizePixel = 0
- frame.Active = true
- frame.Draggable = true
- local stroke = Instance.new("UIStroke", frame)
- stroke.Color = Color3.fromRGB(128, 0, 128) -- Purple
- stroke.Thickness = 3
- local layout = Instance.new("UIListLayout", frame)
- layout.Padding = UDim.new(0, 5)
- layout.SortOrder = Enum.SortOrder.LayoutOrder
- -- Title
- local title = Instance.new("TextLabel", frame)
- title.Size = UDim2.new(1, 0, 0, 30)
- title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- title.Text = "4gH3w2s gui V2.70"
- title.TextColor3 = Color3.fromRGB(255, 255, 255)
- title.Font = Enum.Font.SourceSansBold
- title.TextSize = 18
- -- Button Creator
- local function createButton(text, callback)
- local btn = Instance.new("TextButton")
- btn.Size = UDim2.new(1, -10, 0, 40)
- btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- btn.TextColor3 = Color3.fromRGB(255, 255, 255)
- btn.Font = Enum.Font.SourceSansBold
- btn.TextSize = 16
- btn.Text = text
- btn.BorderSizePixel = 0
- btn.Parent = frame
- btn.MouseButton1Click:Connect(callback)
- end
- -- Variables
- local toadroastOn = false
- local msgSpamOn = false
- local antilagOn = false
- local counter = 0
- local spamThread
- local roastThread
- -- Antilag Function
- local function enableAntilag()
- player.CharacterAdded:Connect(function(char)
- for _, v in pairs(char:GetDescendants()) do
- if v:IsA("ParticleEmitter") or v:IsA("Trail") or v:IsA("Sound") then
- v:Destroy()
- end
- end
- end)
- end
- -- Super Fast Spam with Count
- local function startMsgSpam()
- if msgSpamOn then return end
- msgSpamOn = true
- counter = 0
- spamThread = task.spawn(function()
- while msgSpamOn do
- local msg = Instance.new("Message", workspace)
- counter += 1
- msg.Text = "This is what you fucking get you skid [" .. tostring(counter) .. "]"
- task.delay(0.01, function()
- if msg then msg:Destroy() end
- end)
- if counter >= 10 and not antilagOn then
- warn("SPAM INTENSITY HIGH: May lag players.")
- end
- task.wait(0.01)
- end
- end)
- end
- local function stopMsgSpam()
- msgSpamOn = false
- if spamThread then
- task.cancel(spamThread)
- spamThread = nil
- end
- end
- -- Toadroast
- local function startToadroast()
- if toadroastOn then return end
- toadroastOn = true
- roastThread = task.spawn(function()
- while toadroastOn do
- local msg = Instance.new("Message", workspace)
- msg.Text = "Get toadroasted you bacon-haired bozos"
- wait(0.4)
- msg:Destroy()
- end
- end)
- end
- local function stopToadroast()
- toadroastOn = false
- if roastThread then
- task.cancel(roastThread)
- roastThread = nil
- end
- end
- -- Skybox/Decal
- local function applySkyboxAndDecal(decalId)
- for _, v in pairs(game.Lighting:GetChildren()) do
- if v:IsA("Sky") then v:Destroy() end
- end
- local sky = Instance.new("Sky", game.Lighting)
- for _, f in pairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do
- sky["Skybox" .. f] = "rbxassetid://" .. decalId
- end
- for _, d in pairs(workspace:GetDescendants()) do
- if d:IsA("Decal") then d.Texture = "rbxassetid://" .. decalId end
- end
- end
- -- Music System
- local musicTracks = {
- ["LeBron Glazer"] = "137201380816810",
- ["Cool"] = "83659950657968",
- ["Jumpstyle.exe"] = "10585417841188",
- ["New Drop"] = "76578817848504"
- }
- local function playMusic(musicId)
- local existing = workspace:FindFirstChild("GlobalMusic")
- if existing then existing:Destroy() end
- local sound = Instance.new("Sound", workspace)
- sound.Name = "GlobalMusic"
- sound.SoundId = "rbxassetid://" .. musicId
- sound.Volume = 9000
- sound.Looped = true
- sound:Play()
- end
- local function stopMusic()
- local existing = workspace:FindFirstChild("GlobalMusic")
- if existing then existing:Destroy() end
- end
- -- GUI Buttons
- createButton("Start Message Spam", startMsgSpam)
- createButton("Stop Message Spam", stopMsgSpam)
- createButton("Start Toadroast Spam", startToadroast)
- createButton("Stop Toadroast Spam", stopToadroast)
- createButton("Enable Antilag", function()
- antilagOn = true
- enableAntilag()
- end)
- createButton("l0gKiDD skybox", function()
- applySkyboxAndDecal("81809549905410")
- end)
- createButton("the rock decal", function()
- applySkyboxAndDecal("90204672893936")
- end)
- createButton("Spam Avatar Skybox", function()
- applySkyboxAndDecal("74044569726602")
- end)
- for name, id in pairs(musicTracks) do
- createButton(name, function()
- playMusic(id)
- end)
- end
- createButton("Stop Music", stopMusic)
Add Comment
Please, Sign In to add comment