Advertisement
antgame11

Untitled

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