ExecutorForALLdomain

FE HAX GUI

Feb 3rd, 2024
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Gui = Instance.new("Frame")
  8. local TextButton = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10. local TextButton_2 = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15.  
  16. Gui.Name = "Gui"
  17. Gui.Parent = ScreenGui
  18. Gui.BackgroundColor3 = Color3.fromRGB(97, 97, 97)
  19. Gui.BorderColor3 = Color3.fromRGB(0, 0, 0)
  20. Gui.BorderSizePixel = 0
  21. Gui.Position = UDim2.new(0.0329187997, 0, 0.464516133, 0)
  22. Gui.Size = UDim2.new(0, 457, 0, 267)
  23.  
  24. TextButton.Parent = Gui
  25. TextButton.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
  26. TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  27. TextButton.BorderSizePixel = 0
  28. TextButton.Position = UDim2.new(0.0251434799, 0, 0.22921741, 0)
  29. TextButton.Size = UDim2.new(0, 120, 0, 50)
  30. TextButton.Font = Enum.Font.FredokaOne
  31. TextButton.Text = "BLOCK"
  32. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  33. TextButton.TextSize = 14.000
  34.  
  35. TextLabel.Parent = Gui
  36. TextLabel.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
  37. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  38. TextLabel.BorderSizePixel = 0
  39. TextLabel.Position = UDim2.new(0, 0, -0.00364862219, 0)
  40. TextLabel.Size = UDim2.new(0, 456, 0, 50)
  41. TextLabel.Font = Enum.Font.FredokaOne
  42. TextLabel.Text = "FE GUI"
  43. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  44. TextLabel.TextSize = 33.000
  45.  
  46. TextButton_2.Parent = Gui
  47. TextButton_2.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
  48. TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  49. TextButton_2.BorderSizePixel = 0
  50. TextButton_2.Position = UDim2.new(0.300854653, 0, 0.22921741, 0)
  51. TextButton_2.Size = UDim2.new(0, 120, 0, 50)
  52. TextButton_2.Font = Enum.Font.FredokaOne
  53. TextButton_2.Text = "BLOCK"
  54. TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  55. TextButton_2.TextSize = 14.000
  56.  
  57. -- Scripts:
  58.  
  59. local function CFKD_fake_script() -- Gui.Dragify
  60. local script = Instance.new('LocalScript', Gui)
  61.  
  62. script.Parent.Active = true
  63. script.Parent.Draggable = true
  64. end
  65. coroutine.wrap(CFKD_fake_script)()
  66. local function DAJFSO_fake_script() -- TextButton.Script
  67. local script = Instance.new('Script', TextButton)
  68.  
  69. local button = script.Parent
  70.  
  71. local function OnClick()
  72. local startTime = tick() -- Enregistrez le temps de début
  73.  
  74. while tick() - startTime < 5 do -- Continuez pendant 2 secondes
  75. local Part = Instance.new("Part")
  76. Part.Size = Vector3.new(2, 2, 2)
  77. Part.Anchored = false
  78. Part.CFrame = game.Players.LocalPlayer.Character.Head.CFrame
  79. Part.Parent = game.Workspace
  80. wait(0.001)
  81. end
  82. end
  83.  
  84. button.MouseButton1Click:Connect(OnClick)
  85.  
  86. end
  87. coroutine.wrap(DAJFSO_fake_script)()
  88. local function LHNYNQ_fake_script() -- TextButton_2.Script
  89. local script = Instance.new('Script', TextButton_2)
  90.  
  91. local button = script.Parent
  92. local Players = game.Players
  93. local playerHead = game.Players.LocalPlayer.Character.Head
  94.  
  95. local function OnClick()
  96. for _, player in pairs(Players:GetPlayers()) do
  97. game.Chat:Chat(playerHead,'I HATE BLACK NIGGER')
  98. end
  99. end
  100.  
  101. button.MouseButton1Click:Connect(OnClick)
  102.  
  103. end
  104. coroutine.wrap(LHNYNQ_fake_script)()
  105.  
Add Comment
Please, Sign In to add comment