Chatbypassscriptandm

4gH3w2 epic gui 2.70

May 3rd, 2025
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.73 KB | None | 0 0
  1. -- 4gH3w2s gui V2.70
  2. local player = game.Players.LocalPlayer
  3. local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
  4. gui.Name = "4gH3w2s gui V2.70"
  5. gui.ResetOnSpawn = false
  6.  
  7. -- GUI Frame
  8. local frame = Instance.new("Frame", gui)
  9. frame.Size = UDim2.new(0, 260, 0, 620)
  10. frame.Position = UDim2.new(0, 10, 0.5, -310)
  11. frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  12. frame.BorderSizePixel = 0
  13. frame.Active = true
  14. frame.Draggable = true
  15.  
  16. local stroke = Instance.new("UIStroke", frame)
  17. stroke.Color = Color3.fromRGB(128, 0, 128) -- Purple
  18. stroke.Thickness = 3
  19.  
  20. local layout = Instance.new("UIListLayout", frame)
  21. layout.Padding = UDim.new(0, 5)
  22. layout.SortOrder = Enum.SortOrder.LayoutOrder
  23.  
  24. -- Title
  25. local title = Instance.new("TextLabel", frame)
  26. title.Size = UDim2.new(1, 0, 0, 30)
  27. title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  28. title.Text = "4gH3w2s gui V2.70"
  29. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  30. title.Font = Enum.Font.SourceSansBold
  31. title.TextSize = 18
  32.  
  33. -- Button Creator
  34. local function createButton(text, callback)
  35. local btn = Instance.new("TextButton")
  36. btn.Size = UDim2.new(1, -10, 0, 40)
  37. btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  38. btn.TextColor3 = Color3.fromRGB(255, 255, 255)
  39. btn.Font = Enum.Font.SourceSansBold
  40. btn.TextSize = 16
  41. btn.Text = text
  42. btn.BorderSizePixel = 0
  43. btn.Parent = frame
  44. btn.MouseButton1Click:Connect(callback)
  45. end
  46.  
  47. -- Variables
  48. local toadroastOn = false
  49. local msgSpamOn = false
  50. local antilagOn = false
  51. local counter = 0
  52. local spamThread
  53. local roastThread
  54.  
  55. -- Antilag Function
  56. local function enableAntilag()
  57. player.CharacterAdded:Connect(function(char)
  58. for _, v in pairs(char:GetDescendants()) do
  59. if v:IsA("ParticleEmitter") or v:IsA("Trail") or v:IsA("Sound") then
  60. v:Destroy()
  61. end
  62. end
  63. end)
  64. end
  65.  
  66. -- Super Fast Spam with Count
  67. local function startMsgSpam()
  68. if msgSpamOn then return end
  69. msgSpamOn = true
  70. counter = 0
  71. spamThread = task.spawn(function()
  72. while msgSpamOn do
  73. local msg = Instance.new("Message", workspace)
  74. counter += 1
  75. msg.Text = "This is what you fucking get you skid [" .. tostring(counter) .. "]"
  76. task.delay(0.01, function()
  77. if msg then msg:Destroy() end
  78. end)
  79. if counter >= 10 and not antilagOn then
  80. warn("SPAM INTENSITY HIGH: May lag players.")
  81. end
  82. task.wait(0.01)
  83. end
  84. end)
  85. end
  86.  
  87. local function stopMsgSpam()
  88. msgSpamOn = false
  89. if spamThread then
  90. task.cancel(spamThread)
  91. spamThread = nil
  92. end
  93. end
  94.  
  95. -- Toadroast
  96. local function startToadroast()
  97. if toadroastOn then return end
  98. toadroastOn = true
  99. roastThread = task.spawn(function()
  100. while toadroastOn do
  101. local msg = Instance.new("Message", workspace)
  102. msg.Text = "Get toadroasted you bacon-haired bozos"
  103. wait(0.4)
  104. msg:Destroy()
  105. end
  106. end)
  107. end
  108.  
  109. local function stopToadroast()
  110. toadroastOn = false
  111. if roastThread then
  112. task.cancel(roastThread)
  113. roastThread = nil
  114. end
  115. end
  116.  
  117. -- Skybox/Decal
  118. local function applySkyboxAndDecal(decalId)
  119. for _, v in pairs(game.Lighting:GetChildren()) do
  120. if v:IsA("Sky") then v:Destroy() end
  121. end
  122. local sky = Instance.new("Sky", game.Lighting)
  123. for _, f in pairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do
  124. sky["Skybox" .. f] = "rbxassetid://" .. decalId
  125. end
  126. for _, d in pairs(workspace:GetDescendants()) do
  127. if d:IsA("Decal") then d.Texture = "rbxassetid://" .. decalId end
  128. end
  129. end
  130.  
  131. -- Music System
  132. local musicTracks = {
  133. ["LeBron Glazer"] = "137201380816810",
  134. ["Cool"] = "83659950657968",
  135. ["Jumpstyle.exe"] = "10585417841188",
  136. ["New Drop"] = "76578817848504"
  137. }
  138.  
  139. local function playMusic(musicId)
  140. local existing = workspace:FindFirstChild("GlobalMusic")
  141. if existing then existing:Destroy() end
  142. local sound = Instance.new("Sound", workspace)
  143. sound.Name = "GlobalMusic"
  144. sound.SoundId = "rbxassetid://" .. musicId
  145. sound.Volume = 9000
  146. sound.Looped = true
  147. sound:Play()
  148. end
  149.  
  150. local function stopMusic()
  151. local existing = workspace:FindFirstChild("GlobalMusic")
  152. if existing then existing:Destroy() end
  153. end
  154.  
  155. -- GUI Buttons
  156. createButton("Start Message Spam", startMsgSpam)
  157. createButton("Stop Message Spam", stopMsgSpam)
  158.  
  159. createButton("Start Toadroast Spam", startToadroast)
  160. createButton("Stop Toadroast Spam", stopToadroast)
  161.  
  162. createButton("Enable Antilag", function()
  163. antilagOn = true
  164. enableAntilag()
  165. end)
  166.  
  167. createButton("l0gKiDD skybox", function()
  168. applySkyboxAndDecal("81809549905410")
  169. end)
  170.  
  171. createButton("the rock decal", function()
  172. applySkyboxAndDecal("90204672893936")
  173. end)
  174.  
  175. createButton("Spam Avatar Skybox", function()
  176. applySkyboxAndDecal("74044569726602")
  177. end)
  178.  
  179. for name, id in pairs(musicTracks) do
  180. createButton(name, function()
  181. playMusic(id)
  182. end)
  183. end
  184.  
  185. createButton("Stop Music", stopMusic)
  186.  
Add Comment
Please, Sign In to add comment