Advertisement
ZKiller

Kill players with CAR! [ROBLOX]

Oct 30th, 2017
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. local d = false
  2. local gui = Instance.new("ScreenGui")
  3. gui.Parent = game.Players[script.Parent.Name].PlayerGui
  4. local f = Instance.new("Frame")
  5. f.Parent = gui
  6. f.Position = UDim2.new(0,0,0,500)
  7. f.BackgroundColor3 = Color3.fromRGB(118,207,112)
  8. f.BorderColor3 = Color3.fromRGB(108,197,102)
  9. f.BorderSizePixel = 3
  10. f.Size = UDim2.new(0,200,0,70)
  11. local box = Instance.new("TextBox")
  12. box.Parent = f
  13. box.Size = UDim2.new(0,200,0,30)
  14. box.BackgroundColor3 = Color3.new(0,0,0)
  15. box.BackgroundTransparency = .5
  16. box.Font = Enum.Font.Arcade
  17. box.Text = "Player name"
  18. box.TextColor3 = Color3.new(255,255,255)
  19. box.TextScaled = true
  20. local button = Instance.new("TextButton")
  21. button.Parent = f
  22. button.Position = UDim2.new(0,75,0,40)
  23. button.Size = UDim2.new(0,50,0,20)
  24. button.BackgroundColor3 = Color3.new(0,0,0)
  25. button.BackgroundTransparency = .5
  26. button.Text = "KILL!"
  27. button.TextColor3 = Color3.new(255,255,255)
  28. function kill()
  29. local char = game.Workspace:FindFirstChild(box.Text)
  30. local car = Instance.new("Part")
  31. car.Parent = game.Workspace
  32. car.Locked = true
  33. car.Name = script.Parent.Name.."'s bitch ass fuck car"
  34. car.CFrame = char.Torso.CFrame + Vector3.new(0,0,23)
  35. car.Size = Vector3.new(8,6,18)
  36. local car_mesh = Instance.new("SpecialMesh")
  37. car_mesh.Parent = car
  38. car_mesh.MeshId = "rbxassetid://453074009"
  39. car_mesh.TextureId = "rbxassetid://453073781"
  40. car_mesh.Scale = Vector3.new(.007,.007,.007)
  41. wait(1)
  42. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  43. wait(.01)
  44. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  45. wait(.01)
  46. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  47. wait(.01)
  48. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  49. wait(.01)
  50. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  51. wait(.01)
  52. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  53. wait(.01)
  54. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  55. wait(.01)
  56. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  57. wait(.01)
  58. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  59. wait(.01)
  60. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  61. wait(.01)
  62. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  63. wait(.01)
  64. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  65. char:findFirstChildOfClass("Humanoid").Health = 0
  66. wait(.01)
  67. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  68. wait(.01)
  69. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  70. wait(.01)
  71. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  72. wait(.01)
  73. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  74. wait(.01)
  75. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  76. wait(.01)
  77. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  78. wait(.01)
  79. car.CFrame = car.CFrame - Vector3.new(0,0,1)
  80. wait(.01)
  81. car.Parent = nil
  82. end
  83. button.MouseButton1Down:connect(kill)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement