Advertisement
SynnExploits

FE KILL GUI

Apr 10th, 2019
9,156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local ui = Instance.new("Frame")
  3. local title = Instance.new("TextLabel")
  4. local Frame = Instance.new("Frame")
  5. local Username = Instance.new("TextBox")
  6. local Kill = Instance.new("TextButton")
  7. local cred = Instance.new("TextLabel")
  8. --Properties:
  9. ScreenGui.Parent = game:GetService("CoreGui")
  10. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11.  
  12. ui.Name = "ui"
  13. ui.Parent = ScreenGui
  14. ui.Active = true
  15. ui.BackgroundColor3 = Color3.new(30, 30, 30)
  16. ui.BackgroundTransparency = 0.20000000298023
  17. ui.BorderSizePixel = 0
  18. ui.Position = UDim2.new(0.254972845, 0, 0.419703096, 0)
  19. ui.Size = UDim2.new(0, 535, 0, 283)
  20.  
  21. title.Name = "title"
  22. title.Parent = ui
  23. title.BackgroundColor3 = Color3.new(1, 1, 1)
  24. title.BackgroundTransparency = 1
  25. title.BorderSizePixel = 0
  26. title.Position = UDim2.new(0, 0, 0.0199999996, 0)
  27. title.Size = UDim2.new(1, 0, 0, 50)
  28. title.Font = Enum.Font.SourceSans
  29. title.Text = "FE Kill By Synn"
  30. title.TextColor3 = Color3.new(0, 0, 0)
  31. title.TextScaled = true
  32. title.TextSize = 14
  33. title.TextWrapped = true
  34.  
  35. Frame.Parent = title
  36. Frame.BackgroundColor3 = Color3.new(30,30,30)
  37. Frame.BorderSizePixel = 0
  38. Frame.Position = UDim2.new(0.25, 0, 0.860000014, 0)
  39. Frame.Size = UDim2.new(0.5, 0, 0, 3)
  40.  
  41. Username.Name = "Tag"
  42. Username.Parent = ui
  43. Username.BackgroundColor3 = Color3.new(1, 1, 1)
  44. Username.BorderSizePixel = 0
  45. Username.Position = UDim2.new(0.100000001, 0, 0.300000012, 0)
  46. Username.Size = UDim2.new(0.800000012, 0, 0, 50)
  47. Username.Font = Enum.Font.SourceSans
  48. Username.PlaceholderText = "Name"
  49. Username.Text = ""
  50. Username.TextColor3 = Color3.new(0, 0, 0)
  51. Username.TextScaled = true
  52. Username.TextSize = 14
  53. Username.TextWrapped = true
  54.  
  55. Kill.Name = "Kill"
  56. Kill.Parent = ui
  57. Kill.BackgroundColor3 = Color3.new(1, 1, 1)
  58. Kill.BackgroundTransparency = 0.20000000298023
  59. Kill.BorderSizePixel = 2
  60. Kill.Position = UDim2.new(0.25, 0, 0.529999971, 0)
  61. Kill.Size = UDim2.new(0.5, 0, 0, 50)
  62. Kill.Font = Enum.Font.Gotham
  63. Kill.Text = "KILL THAT NIGGER"
  64. Kill.TextColor3 = Color3.new(0, 0, 0)
  65. Kill.TextScaled = true
  66. Kill.TextSize = 14
  67. Kill.TextWrapped = true
  68.  
  69. local Players = game:GetService("Players")
  70. local LocalPlayer = Players.LocalPlayer
  71. local function RemoveSpaces(String)
  72. return String:gsub("%s+", "") or String
  73. end
  74.  
  75. local function FindPlayer(String)
  76. String = RemoveSpaces(String)
  77. for _, _Player in pairs(Players:GetPlayers()) do
  78. if _Player.Name:lower():match('^'.. String:lower()) then
  79. return _Player
  80. end
  81. end
  82. return nil
  83. end
  84.  
  85. Kill.MouseButton1Click:Connect(function()
  86. local Target = FindPlayer(Username.Text)
  87. if Target and Target.Character then
  88. local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  89. local Torso = Character:FindFirstChild("Torso") or Character:FindFirstChild("UpperTorso")
  90.  
  91. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  92. Torso.Anchored = true
  93. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  94. local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  95. local hathandle = hat.Handle
  96. hathandle.Parent = tool
  97. hathandle.Massless = true
  98. tool.GripPos = Vector3.new(0, 9e99, 0)
  99. tool.Parent = LocalPlayer.Character
  100. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  101. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  102. Torso.Anchored = false
  103. repeat LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = Target.Character:FindFirstChild("HumanoidRootPart").CFrame wait()
  104. until Target.Character == nil or Target.Character:FindFirstChild("Humanoid").Health <= 0 or LocalPlayer.Character == nil or LocalPlayer.Character:FindFirstChild("Humanoid").Health <= 0 or (Target.Character:FindFirstChild("HumanoidRootPart").Velocity.magnitude - Target.Character:FindFirstChild("Humanoid").WalkSpeed) > (Target.Character:FindFirstChild("Humanoid").WalkSpeed + 20)
  105. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  106. hathandle.Parent = hat
  107. hathandle.Massless = false
  108. tool:Destroy()
  109. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  110. else
  111. warn''
  112. end
  113. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement