Advertisement
W6-4A-Z_T

OP FE KILL GUI FOR ROBLOX V3!

Jul 18th, 2019
27,019
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 KB | None | 0 0
  1. -- Subscribe to ProjectCoxelizo, i make bypasses.
  2. -- You can mostly see me on Dollhouse Roleplay.
  3. -- My Username is ProjectCoxelizo.
  4. -- Version: 2.82
  5. -- Instances:
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextBox = Instance.new("TextBox")
  9. local TextButton = Instance.new("TextButton")
  10. local TextButton_2 = Instance.new("TextButton")
  11. local TextLabel = Instance.new("TextLabel")
  12. --Properties:
  13. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  18. Frame.Position = UDim2.new(0, 0, 0.416461915, 0)
  19. Frame.Size = UDim2.new(0, 157, 0, 125)
  20.  
  21. TextBox.Parent = Frame
  22. TextBox.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  23. TextBox.Position = UDim2.new(0.0617061071, 0, 0.32585302, 0)
  24. TextBox.Size = UDim2.new(0, 136, 0, 30)
  25. TextBox.Font = Enum.Font.SourceSans
  26. TextBox.Text = ""
  27. TextBox.TextColor3 = Color3.new(0.937255, 0.937255, 0.937255)
  28. TextBox.TextSize = 19
  29.  
  30. TextButton.Parent = Frame
  31. TextButton.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  32. TextButton.Position = UDim2.new(0.0501454361, 0, 0.688206077, 0)
  33. TextButton.Size = UDim2.new(0, 140, 0, 31)
  34. TextButton.Font = Enum.Font.SciFi
  35. TextButton.Text = "Kill Player"
  36. TextButton.TextColor3 = Color3.new(0.678431, 0.678431, 0.678431)
  37. TextButton.TextSize = 24
  38.  
  39. TextButton_2.Parent = Frame
  40. TextButton_2.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  41. TextButton_2.Position = UDim2.new(0.847133756, 0, 0, 0)
  42. TextButton_2.Size = UDim2.new(0, 24, 0, 24)
  43. TextButton_2.Font = Enum.Font.SciFi
  44. TextButton_2.Text = "X"
  45. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  46. TextButton_2.TextSize = 18
  47. TextButton_2.MouseButton1Click:connect(function()
  48. Frame.Visible = false
  49. end)
  50.  
  51. TextLabel.Parent = Frame
  52. TextLabel.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  53. TextLabel.Size = UDim2.new(0, 133, 0, 24)
  54. TextLabel.Font = Enum.Font.SourceSans
  55. TextLabel.Text = "Dirt? :3 By: Sten"
  56. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  57. TextLabel.TextSize = 18
  58. -- Scripts:
  59. local Players = game:GetService("Players")
  60. local LocalPlayer = Players.LocalPlayer
  61. local function RemoveSpaces(String)
  62. return String:gsub("%s+", "") or String
  63. end
  64. --Made By StenHisDirt :)
  65. local function FindPlayer(String)
  66. String = RemoveSpaces(String)
  67. for _, _Player in pairs(Players:GetPlayers()) do
  68. if _Player.Name:lower():match('^'.. String:lower()) then
  69. return _Player
  70. end
  71. end
  72. return nil
  73. end
  74.  
  75. TextButton.MouseButton1Click:Connect(function()
  76. local Target = FindPlayer(TextBox.Text)
  77. if Target and Target.Character then
  78. local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  79. local Torso = Character:FindFirstChild("Torso") or Character:FindFirstChild("UpperTorso")
  80.  
  81. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  82. Torso.Anchored = true
  83. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  84. local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  85. local hathandle = hat.Handle
  86. hathandle.Parent = tool
  87. hathandle.Massless = true
  88. tool.GripPos = Vector3.new(0, 9e99, 0)
  89. tool.Parent = LocalPlayer.Character
  90. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  91. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  92. Torso.Anchored = false
  93. repeat LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = Target.Character:FindFirstChild("HumanoidRootPart").CFrame wait()
  94. 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)
  95. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  96. hathandle.Parent = hat
  97. hathandle.Massless = false
  98. tool:Destroy()
  99. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  100. else
  101. warn'no player found named like that or he has no char'
  102. end
  103. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement