Advertisement
toonrun123

FekillRemake

Mar 26th, 2019
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.09 KB | None | 0 0
  1. --Remade
  2. --this Real https://pastebin.com/0sWCcrfF
  3. -- Obj:
  4. local FEKILL = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local Namemain = Instance.new("TextLabel")
  7. local OPlrBox = Instance.new("TextBox")
  8. local KillButton = Instance.new("TextButton")
  9. --Function:
  10. FEKILL.Name = "FEKILL"
  11. FEKILL.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12.  
  13. Main.Name = "Main"
  14. Main.Parent = FEKILL
  15. Main.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  16. Main.BorderSizePixel = 0
  17. Main.Position = UDim2.new(0.0472972989, 0, 0.632492065, 0)
  18. Main.Size = UDim2.new(0, 355, 0, 186)
  19.  
  20. Namemain.Name = "Namemain"
  21. Namemain.Parent = Main
  22. Namemain.BackgroundColor3 = Color3.new(1, 1, 1)
  23. Namemain.BackgroundTransparency = 1
  24. Namemain.Position = UDim2.new(0.215556413, 0, -0.00179776549, 0)
  25. Namemain.Size = UDim2.new(0, 200, 0, 50)
  26. Namemain.Font = Enum.Font.GothamBlack
  27. Namemain.Text = "FEKILL"
  28. Namemain.TextColor3 = Color3.new(0.333333, 0.666667, 0)
  29. Namemain.TextSize = 30
  30.  
  31. OPlrBox.Name = "OPlrBox"
  32. OPlrBox.Parent = Main
  33. OPlrBox.BackgroundColor3 = Color3.new(1, 1, 1)
  34. OPlrBox.BackgroundTransparency = 1
  35. OPlrBox.Position = UDim2.new(-0.00115467608, 0, 0.36046949, 0)
  36. OPlrBox.Size = UDim2.new(0, 355, 0, 50)
  37. OPlrBox.Font = Enum.Font.GothamBlack
  38. OPlrBox.Text = "Plrname"
  39. OPlrBox.TextColor3 = Color3.new(1, 1, 1)
  40. OPlrBox.TextSize = 20
  41.  
  42. -- creds to Hamiii for the plr finder
  43. local Players = game:GetService("Players")
  44. local LocalPlayer = Players.LocalPlayer
  45. local function RemoveSpaces(String)
  46.     return String:gsub("%s+", "") or String
  47. end
  48.  
  49. local function FindPlayer(String)
  50.     String = RemoveSpaces(String)
  51.     for _, _Player in pairs(Players:GetPlayers()) do
  52.         if _Player.Name:lower():match('^'.. String:lower()) then
  53.             return _Player
  54.         end
  55.     end
  56.     return nil
  57. end
  58.  
  59. KillButton.Name = "KillButton"
  60. KillButton.Parent = Main
  61. KillButton.BackgroundColor3 = Color3.new(1, 1, 1)
  62. KillButton.BackgroundTransparency = 1
  63. KillButton.Position = UDim2.new(0.215556413, 0, 0.691750646, 0)
  64. KillButton.Size = UDim2.new(0, 200, 0, 50)
  65. KillButton.Font = Enum.Font.GothamBlack
  66. KillButton.Text = "KILL"
  67. KillButton.TextColor3 = Color3.new(1, 0, 0)
  68. KillButton.TextSize = 30
  69. KillButton.MouseButton1Down:connect(function()
  70.      local Target = FindPlayer(OPlrBox.Text)
  71.     if Target and Target.Character then
  72.         local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  73.         local Torso = Character:FindFirstChild("Torso") or Character:FindFirstChild("UpperTorso")
  74.        
  75.         local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  76.         Torso.Anchored = true
  77.         local tool = Instance.new("Tool", LocalPlayer.Backpack)
  78.         local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  79.         local hathandle = hat.Handle
  80.         hathandle.Parent = tool
  81.         hathandle.Massless = true
  82.         tool.GripPos = Vector3.new(0, 9e99, 0)
  83.         tool.Parent = LocalPlayer.Character
  84.         repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  85.         tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  86.         Torso.Anchored = false
  87.         repeat LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = Target.Character:FindFirstChild("HumanoidRootPart").CFrame wait()
  88.         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)
  89.         LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  90.         hathandle.Parent = hat
  91.         hathandle.Massless = false
  92.         tool:Destroy()
  93.         LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  94.     else
  95.         warn'no player found named like that or he has no char'
  96.     end
  97. end)
  98.  
  99. -- Script Gui
  100. Main.Active = true
  101. Main.Selectable = true
  102. Main.Draggable = true
  103. --End Line...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement