Advertisement
SlappyDappyCrappy

clone ur stuff u fee

Apr 14th, 2018
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. -- made by TheFlamingBlaster
  2. print("no u")
  3.  
  4. local plr = game.Players.LocalPlayer
  5. local mouse = plr:GetMouse()
  6. local adornees
  7. local destroyit = false
  8. local lasttarget
  9. local currenttarget
  10. local changed = {}
  11. mouse.Button1Down:connect(function()
  12. if mouse.Target then
  13. if mouse.Target.Parent.ClassName == "Model" then
  14. currenttarget = mouse.Target.Parent
  15. lasttarget = mouse.Target.Parent
  16. adornees = Instance.new("Model",plr.Character)
  17. for i,v in pairs(mouse.Target.Parent:GetChildren()) do
  18. local s = Instance.new("SelectionBox",adornees)
  19. s.LineThickness = 0
  20. s.SurfaceColor3 = Color3.new(0, 0, 0)
  21. s.Color3 = Color3.new(0, 0, 0)
  22. s.SurfaceTransparency = 0
  23. if v:IsA("Part") then
  24. if v.Name == "Torso" then
  25. local lasso = Instance.new("SelectionPartLasso",adornees)
  26. lasso.Color3 = Color3.new(0, 0, 0)
  27. lasso.Humanoid = plr.Character.Humanoid
  28. lasso.Part = v
  29. end
  30. s.Adornee = v
  31. end
  32.  
  33. end
  34. destroyit = true
  35. end
  36. end
  37. end)
  38.  
  39. print("z to hurt")
  40. --hurt
  41. game:GetService('UserInputService').InputBegan:connect(function(input,processed)
  42. if mouse.Target and destroyit == true then
  43. if input.KeyCode == Enum.KeyCode.Z then
  44. adornees:Destroy()
  45. currenttarget.Humanoid:TakeDamage(50)
  46. currenttarget = nil
  47. end
  48. end
  49. end)
  50.  
  51. print("x to heal")
  52. --heal
  53. game:GetService('UserInputService').InputBegan:connect(function(input,processed)
  54. if mouse.Target and destroyit == true then
  55. if input.KeyCode == Enum.KeyCode.X then
  56. adornees:Destroy()
  57. currenttarget.Humanoid:TakeDamage(-50)
  58. currenttarget = nil
  59. end
  60. end
  61. end)
  62.  
  63. print("c to destroy")
  64. --remove
  65. game:GetService('UserInputService').InputBegan:connect(function(input,processed)
  66. if mouse.Target and destroyit == true then
  67. if input.KeyCode == Enum.KeyCode.C then
  68. adornees:Destroy()
  69. currenttarget:Destroy()
  70. currenttarget = nil
  71. end
  72. end
  73. end)
  74.  
  75. print("v to become one with")
  76. --fuse
  77. game:GetService('UserInputService').InputBegan:connect(function(input,processed)
  78. if mouse.Target and destroyit == true then
  79. if input.KeyCode == Enum.KeyCode.V then
  80. adornees:Destroy()
  81. plr.Character = currenttarget
  82. CAM = workspace.CurrentCamera
  83. CAM.CameraSubject = currenttarget.Head
  84. currenttarget = nil
  85. end
  86. end
  87. end)
  88.  
  89. print("n to boom")
  90. --boom
  91. game:GetService('UserInputService').InputBegan:connect(function(input,processed)
  92. if mouse.Target and destroyit == true then
  93. if input.KeyCode == Enum.KeyCode.N then
  94. adornees:Destroy()
  95. local boom = Instance.new("Explosion")
  96. boom.Position = currenttarget.Head.Position
  97. currenttarget = nil
  98. end
  99. end
  100. end)
  101.  
  102.  
  103. mouse.Button1Up:connect(function()
  104. if destroyit == true then
  105. currenttarget = nil
  106. for i,v in pairs(changed) do
  107. end
  108. changed = {}
  109. adornees:Destroy()
  110. destroyit = false
  111. end
  112. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement