naruto9161

My Hero Bizarre Adventures

Jul 15th, 2018
1,384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  2.  
  3. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4. epic = false
  5.  
  6. function onKeyPress(inputObject, gameProcessedEvent)
  7. if inputObject.KeyCode == Enum.KeyCode.Minus then
  8. epic = true
  9. wait(0.1)
  10. epic = false
  11. end
  12. end
  13. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  14.  
  15. function onKeyPresss(inputObject, gameProcessedEvent)
  16. if inputObject.KeyCode == Enum.KeyCode.Equals then
  17.  
  18. local prt=Instance.new("Model", workspace);
  19. Instance.new("Part", prt).Name="Torso";
  20. Instance.new("Part", prt).Name="Head";
  21. Instance.new("Humanoid", prt).Name="Humanoid";
  22. game.Players.LocalPlayer.Character=prt
  23.  
  24. end
  25. end
  26. game:GetService("UserInputService").InputBegan:connect(onKeyPresss)
  27.  
  28. l.Parent = game.Players.LocalPlayer.Character
  29. l.Name = "Humanoid"
  30.  
  31. wait(0.1)
  32.  
  33. game.Players.LocalPlayer.Character["1"]:Destroy()
  34.  
  35. game.Workspace.CurrentCamera.CameraSubject =
  36. game.Players.LocalPlayer.Character
  37.  
  38. game.Players.LocalPlayer.Character.Animate.Disabled = true
  39.  
  40. wait(0.1)
  41.  
  42. game.Players.LocalPlayer.Character.Animate.Disabled = false
  43.  
  44. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  45.  
  46. wait(0,5)
  47. while wait(0,1) do
  48. for _,v in pairs(game.Workspace.Mobs:GetDescendants()) do
  49.  
  50. if v:IsA("Model") and v:FindFirstChild("HumanoidRootPart") then
  51.  
  52. repeat
  53.  
  54. wait(0,1)
  55.  
  56. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,3)
  57.  
  58. game:GetService("ReplicatedStorage").RemoteEvents.PunchRemote:FireServer()
  59.  
  60. until v.Humanoid.Health == 0 or epic == true
  61.  
  62. end
  63.  
  64. end
  65.  
  66. end
Add Comment
Please, Sign In to add comment