Advertisement
W6-4A-Z_T

OP FE KILL GUI FOR ROBLOX V2!

Jul 18th, 2019
536
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.83 KB | None | 0 0
  1. --Subscribe to ProjectCoxelizo, i make bypasses.
  2. --Check my videos of me making Bypasses!
  3. --You can mostly see me on Dollhouse roleplay.
  4. --My Username is ProjectCoxelizo.
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local ui = Instance.new("Frame")
  8. local title = Instance.new("TextLabel")
  9. local Frame = Instance.new("Frame")
  10. local Username = Instance.new("TextBox")
  11. local Kill = Instance.new("TextButton")
  12. local cred = Instance.new("TextLabel")
  13. --Properties:
  14. ScreenGui.Parent = game:GetService("CoreGui")
  15. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. ui.Name = "ui"
  18. ui.Parent = ScreenGui
  19. ui.Active = true
  20. ui.BackgroundColor3 = Color3.new(1, 1, 1)
  21. ui.BackgroundTransparency = 0.20000000298023
  22. ui.BorderSizePixel = 3
  23. ui.Position = UDim2.new(0.254972845, 0, 0.419703096, 0)
  24. ui.Size = UDim2.new(0, 535, 0, 283)
  25.  
  26. title.Name = "title"
  27. title.Parent = ui
  28. title.BackgroundColor3 = Color3.new(1, 1, 1)
  29. title.BackgroundTransparency = 1
  30. title.BorderSizePixel = 2
  31. title.Position = UDim2.new(0, 0, 0.0199999996, 0)
  32. title.Size = UDim2.new(1, 0, 0, 50)
  33. title.Font = Enum.Font.SourceSans
  34. title.Text = "FE KILL"
  35. title.TextColor3 = Color3.new(0, 0, 0)
  36. title.TextScaled = true
  37. title.TextSize = 14
  38. title.TextWrapped = true
  39.  
  40. Frame.Parent = title
  41. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  42. Frame.BorderSizePixel = 0
  43. Frame.Position = UDim2.new(0.25, 0, 0.860000014, 0)
  44. Frame.Size = UDim2.new(0.5, 0, 0, 3)
  45.  
  46. Username.Name = "Username"
  47. Username.Parent = ui
  48. Username.BackgroundColor3 = Color3.new(1, 1, 1)
  49. Username.BorderSizePixel = 0
  50. Username.Position = UDim2.new(0.100000001, 0, 0.300000012, 0)
  51. Username.Size = UDim2.new(0.800000012, 0, 0, 50)
  52. Username.Font = Enum.Font.SourceSans
  53. Username.PlaceholderText = "Name"
  54. Username.Text = ""
  55. Username.TextColor3 = Color3.new(0, 0, 0)
  56. Username.TextScaled = true
  57. Username.TextSize = 14
  58. Username.TextWrapped = true
  59.  
  60. Kill.Name = "Kill"
  61. Kill.Parent = ui
  62. Kill.BackgroundColor3 = Color3.new(1, 1, 1)
  63. Kill.BackgroundTransparency = 0.20000000298023
  64. Kill.BorderSizePixel = 2
  65. Kill.Position = UDim2.new(0.25, 0, 0.529999971, 0)
  66. Kill.Size = UDim2.new(0.5, 0, 0, 50)
  67. Kill.Font = Enum.Font.Gotham
  68. Kill.Text = "KILL"
  69. Kill.TextColor3 = Color3.new(0, 0, 0)
  70. Kill.TextScaled = true
  71. Kill.TextSize = 14
  72. Kill.TextWrapped = true
  73.  
  74. cred.Name = "cred"
  75. cred.Parent = ui
  76. cred.BackgroundColor3 = Color3.new(1, 1, 1)
  77. cred.BackgroundTransparency = 1
  78. cred.BorderSizePixel = 2
  79. cred.Position = UDim2.new(0.0500000007, 0, 0.769999981, 0)
  80. cred.Size = UDim2.new(0.899999976, 0, 0, 50)
  81. cred.Font = Enum.Font.SourceSans
  82. cred.Text = "Credits to Cyclically, Thunder Mods"
  83. cred.TextColor3 = Color3.new(0, 0, 0)
  84. cred.TextScaled = true
  85. cred.TextSize = 14
  86. cred.TextWrapped = true
  87. ui.Draggable = true
  88.  
  89. -- creds to Hamiii for the plr finder
  90. local Players = game:GetService("Players")
  91. local LocalPlayer = Players.LocalPlayer
  92. local function RemoveSpaces(String)
  93. return String:gsub("%s+", "") or String
  94. end
  95.  
  96. local function FindPlayer(String)
  97. String = RemoveSpaces(String)
  98. for _, _Player in pairs(Players:GetPlayers()) do
  99. if _Player.Name:lower():match('^'.. String:lower()) then
  100. return _Player
  101. end
  102. end
  103. return nil
  104. end
  105.  
  106. Kill.MouseButton1Click:Connect(function()
  107. local Target = FindPlayer(Username.Text)
  108. if Target and Target.Character then
  109. local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  110. local Torso = Character:FindFirstChild("Torso") or Character:FindFirstChild("UpperTorso")
  111.  
  112. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  113. Torso.Anchored = true
  114. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  115. local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  116. local hathandle = hat.Handle
  117. hathandle.Parent = tool
  118. hathandle.Massless = true
  119. tool.GripPos = Vector3.new(0, 9e99, 0)
  120. tool.Parent = LocalPlayer.Character
  121. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  122. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  123. Torso.Anchored = false
  124. repeat LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = Target.Character:FindFirstChild("HumanoidRootPart").CFrame wait()
  125. 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)
  126. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  127. hathandle.Parent = hat
  128. hathandle.Massless = false
  129. tool:Destroy()
  130. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  131. else
  132. warn'no player found named like that or he has no char'
  133. end
  134. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement