Chatbypassscriptandm

4gH3w2 F3X gui

May 14th, 2025 (edited)
27
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.03 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local screenGui = Instance.new("ScreenGui")
  3. screenGui.Name = "4gH3w2 F3X gui V4.60"
  4. screenGui.Parent = player:WaitForChild("PlayerGui")
  5. screenGui.ResetOnSpawn = false
  6.  
  7. local CUSTOM_FONT = Font.fromId(12187363368)
  8. local OUTLINE = Color3.fromRGB(255,0,0) -- RED
  9.  
  10. local mainFrame = Instance.new("Frame")
  11. mainFrame.Size = UDim2.new(0, 540, 0, 605)
  12. mainFrame.Position = UDim2.new(0.5, -270, 0.5, -302)
  13. mainFrame.BackgroundColor3 = Color3.new(0,0,0)
  14. mainFrame.BorderSizePixel = 3
  15. mainFrame.BorderColor3 = OUTLINE
  16. mainFrame.Active = true
  17. mainFrame.Draggable = true
  18. mainFrame.Parent = screenGui
  19.  
  20. local titleLabel = Instance.new("TextLabel")
  21. titleLabel.Size = UDim2.new(1, 0, 0, 44)
  22. titleLabel.Position = UDim2.new(0, 0, 0, 0)
  23. titleLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  24. titleLabel.BorderSizePixel = 2
  25. titleLabel.BorderColor3 = OUTLINE
  26. titleLabel.FontFace = CUSTOM_FONT
  27. titleLabel.Text = "4gH3w2 F3X gui V4.60"
  28. titleLabel.TextColor3 = OUTLINE
  29. titleLabel.TextSize = 30
  30. titleLabel.Parent = mainFrame
  31.  
  32. local scroll = Instance.new("ScrollingFrame")
  33. scroll.Size = UDim2.new(1, -18, 1, -54)
  34. scroll.Position = UDim2.new(0, 9, 0, 49)
  35. scroll.BackgroundColor3 = Color3.fromRGB(0,0,0)
  36. scroll.BackgroundTransparency = 0.13
  37. scroll.BorderSizePixel = 0
  38. scroll.CanvasSize = UDim2.new(0, 0, 0, 2650)
  39. scroll.ScrollBarThickness = 10
  40. scroll.Parent = mainFrame
  41.  
  42. local function styledButton(text, x, y, wide)
  43. local btn = Instance.new("TextButton")
  44. if wide then
  45. btn.Size = UDim2.new(0, 518, 0, 44)
  46. btn.Position = UDim2.new(0, 5, 0, y)
  47. else
  48. btn.Size = UDim2.new(0, 254, 0, 44)
  49. btn.Position = UDim2.new(0, x, 0, y)
  50. end
  51. btn.BackgroundColor3 = Color3.new(0,0,0)
  52. btn.BorderSizePixel = 2
  53. btn.BorderColor3 = OUTLINE
  54. btn.FontFace = CUSTOM_FONT
  55. btn.Text = text
  56. btn.TextColor3 = OUTLINE
  57. btn.TextSize = 21
  58. btn.TextWrapped = true
  59. btn.Parent = scroll
  60. return btn
  61. end
  62.  
  63. local function findF3XTool()
  64. for _,v in pairs(player:GetDescendants()) do
  65. if v.Name == "SyncAPI" then return v.Parent end
  66. end
  67. for _,v in pairs(game.ReplicatedStorage:GetDescendants()) do
  68. if v.Name == "SyncAPI" then return v.Parent end
  69. end
  70. end
  71.  
  72. local function makeSkybox(skyName, texID)
  73. local tool = findF3XTool()
  74. if not tool then warn("No F3X found."); return end
  75. local remote, char = tool.SyncAPI.ServerEndpoint, player.Character
  76. if not (remote and char and char:FindFirstChild("HumanoidRootPart")) then return end
  77. local function _(args) remote:InvokeServer(unpack(args)) end
  78.  
  79. local function CreatePart(cf, parent) _( { "CreatePart", "Normal", cf, parent } ) end
  80. local function SetName(part, name) _( { "SetName", { part }, name } ) end
  81. local function AddMesh(part) _( { "CreateMeshes", { { Part = part } } } ) end
  82. local function SetMesh(part, meshid) _( { "SyncMesh", { { Part = part, MeshId = "rbxassetid://111891702759441" } } } ) end
  83. local function SetTexture(part, texid) _( { "SyncMesh", { { Part = part, TextureId = "rbxassetid://"..texid } } } ) end
  84. local function MeshResize(part, size) _( { "SyncMesh", { { Part = part, Scale = size } } } ) end
  85. local function SetLocked(part, bool) _( { "SetLocked", { part }, bool } ) end
  86.  
  87. local pos = char.HumanoidRootPart.Position
  88. CreatePart(CFrame.new(math.floor(pos.x), math.floor(pos.y), math.floor(pos.z)) + Vector3.new(0,6,0), workspace)
  89. task.wait(0.05)
  90. for _,v in workspace:GetDescendants() do
  91. if v:IsA("BasePart") and math.floor(v.Position.x) == math.floor(pos.x) and math.floor(v.Position.z) == math.floor(pos.z) then
  92. SetName(v, skyName)
  93. AddMesh(v)
  94. SetMesh(v, "111891702759441")
  95. SetTexture(v, texID)
  96. MeshResize(v, Vector3.new(6000,6000,6000))
  97. SetLocked(v, true)
  98. end
  99. end
  100. end
  101.  
  102. local function spamDecal(name, asset)
  103. local tool = findF3XTool()
  104. if not tool then warn("No F3X found."); return end
  105. local remote = tool.SyncAPI.ServerEndpoint
  106. local function _(args) remote:InvokeServer(unpack(args)) end
  107. local function SpawnDecal(part, side) _( { "CreateTextures", { { Part = part, Face = side, TextureType = "Decal" } } } ) end
  108. local function AddDecal(part, asset, side) _( { "SyncTexture", { { Part = part, Face = side, TextureType = "Decal", Texture = "rbxassetid://"..asset } } } ) end
  109. local function SetLocked(part, bool) _( { "SetLocked", { part }, bool } ) end
  110. local faces = {Enum.NormalId.Front,Enum.NormalId.Back,Enum.NormalId.Right,Enum.NormalId.Left,Enum.NormalId.Bottom,Enum.NormalId.Top}
  111. for _,v in workspace:GetDescendants() do
  112. if v:IsA("BasePart") then
  113. task.spawn(function()
  114. SetLocked(v, false)
  115. for _,face in ipairs(faces) do
  116. SpawnDecal(v, face)
  117. AddDecal(v, asset, face)
  118. end
  119. v.Name = name
  120. end)
  121. end
  122. end
  123. end
  124.  
  125. local function sendHDAdmin(cmd)
  126. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  127. local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand
  128. RequestCommand:InvokeServer(cmd)
  129. end
  130.  
  131. -- === CUM ZONE HANDLER ===
  132. local function cumZoneAll()
  133. sendHDAdmin(";music 7024488152")
  134. sendHDAdmin(";volume inf")
  135. spamDecal("CUM ZONE decal spam", "128578305705894")
  136. makeSkybox("CUM ZONE sky", "128578305705894")
  137. end
  138.  
  139. -- === YOU ARE AN IDIOT HANDLER ===
  140. local function idiotAll()
  141. sendHDAdmin(";music 3200130016")
  142. sendHDAdmin(";volume inf")
  143. spamDecal("YOU ARE AN IDIOT decal spam", "130369568466729")
  144. makeSkybox("YOU ARE AN IDIOT sky", "130369568466729")
  145. end
  146.  
  147. -----------------------------------------------------
  148. local y = 4; local sep = 44
  149.  
  150. styledButton("4gH3w2 skybox", 8, y).MouseButton1Click:Connect(function()
  151. makeSkybox("4gH3w2 skybox", "71298651733683")
  152. end)
  153. styledButton("4gH3w2 decal", 274, y).MouseButton1Click:Connect(function()
  154. spamDecal("4gH3w2 decal", "71298651733683")
  155. end)
  156. y = y + sep
  157.  
  158. styledButton("k00pkidd skybox", 8, y).MouseButton1Click:Connect(function()
  159. makeSkybox("k00pkidd skybox", "95730674007967")
  160. end)
  161. styledButton("k00pkidd decal", 274, y).MouseButton1Click:Connect(function()
  162. spamDecal("k00pkidd decal", "95730674007967")
  163. end)
  164. y = y + sep
  165.  
  166. styledButton("4gH3w2 skybox 2", 8, y).MouseButton1Click:Connect(function()
  167. makeSkybox("4gH3w2 skybox 2", "120446217705821")
  168. end)
  169. styledButton("4gH3w2 decal 2", 274, y).MouseButton1Click:Connect(function()
  170. spamDecal("4gH3w2 decal 2", "120446217705821")
  171. end)
  172. y = y + sep
  173.  
  174. styledButton("CHEESE skybox", 8, y).MouseButton1Click:Connect(function()
  175. makeSkybox("CHEESE skybox", "77068268752059")
  176. end)
  177. styledButton("CHEESE decal spam", 274, y).MouseButton1Click:Connect(function()
  178. spamDecal("CHEESE decal spam", "77068268752059")
  179. end)
  180. y = y + sep
  181.  
  182. styledButton("CUM ZONE!", 8, y, true).MouseButton1Click:Connect(cumZoneAll)
  183. y = y + sep
  184.  
  185. styledButton("YOU ARE AN IDIOT", 8, y, true).MouseButton1Click:Connect(idiotAll)
  186. y = y + sep
  187.  
  188. styledButton("F3X", 8, y, true).MouseButton1Click:Connect(function()
  189. sendHDAdmin(";give me b")
  190. sendHDAdmin(";buildingTools")
  191. end)
  192. y = y + sep
  193.  
  194. styledButton("theme", 8, y, true).MouseButton1Click:Connect(function()
  195. sendHDAdmin(";music 135881205397136")
  196. sendHDAdmin(";volume inf")
  197. sendHDAdmin(";pitch 1.3")
  198. end)
  199. y = y + sep
  200.  
  201. styledButton("theme 2", 8, y, true).MouseButton1Click:Connect(function()
  202. sendHDAdmin(";music 138397903891342")
  203. sendHDAdmin(";volume inf")
  204. end)
  205. y = y + sep
  206.  
  207. styledButton("speed moan", 8, y, true).MouseButton1Click:Connect(function()
  208. sendHDAdmin(";music 121845363817817")
  209. sendHDAdmin(";volume inf")
  210. sendHDAdmin(";pitch 0.9")
  211. end)
  212. y = y + sep
  213.  
  214. styledButton("MASK OFF", 8, y, true).MouseButton1Click:Connect(function()
  215. sendHDAdmin(";music 106786416076383")
  216. sendHDAdmin(";volume inf")
  217. end)
  218. y = y + sep
  219.  
  220. styledButton("disco", 8, y, true).MouseButton1Click:Connect(function()
  221. sendHDAdmin(";disco")
  222. sendHDAdmin(";fog 10")
  223. end)
  224. y = y + sep
  225.  
  226. styledButton("re", 8, y, true).MouseButton1Click:Connect(function()
  227. sendHDAdmin(";re")
  228. end)
  229. y = y + sep
  230.  
  231. styledButton("kill all", 8, y, true).MouseButton1Click:Connect(function()
  232. sendHDAdmin(";loopkill all")
  233. end)
  234. y = y + sep
  235.  
  236. styledButton("fire all", 8, y, true).MouseButton1Click:Connect(function()
  237. sendHDAdmin(";fire all")
  238. end)
  239. y = y + sep
  240.  
  241. styledButton("servermessage spam", 8, y, true).MouseButton1Click:Connect(function()
  242. sendHDAdmin(";servermessage FE BYPASSED SKIDS")
  243. sendHDAdmin(";servermessage destroyed by 4gH3w2")
  244. sendHDAdmin(";servermessage TBMH WAS HERE SKIDS")
  245. sendHDAdmin(";servermessage CHEESE")
  246. end)
  247. y = y + sep
  248.  
  249. styledButton("savemap", 8, y, true).MouseButton1Click:Connect(function()
  250. sendHDAdmin(";savemap")
  251. end)
  252. y = y + sep
  253.  
  254. styledButton("loadmap", 8, y, true).MouseButton1Click:Connect(function()
  255. sendHDAdmin(";loadmap")
  256. end)
Comments
Add Comment
Please, Sign In to add comment