MrKix

Скрипт 24, OP:OS Raid boss fucker

Nov 2nd, 2019
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. -- Inferno asscident boss killer
  2.  
  3.  
  4.  
  5.  
  6. player = game.Players.LocalPlayer
  7. mouse = player:GetMouse()
  8.  
  9. mouse.KeyDown:connect(function(key)
  10. if key == "z" then
  11. local me = game.Players.LocalPlayer.Character
  12.  
  13. local targetplayer = game:GetService("Workspace").InfernoArena.Structure.Slate
  14.  
  15. me.HumanoidRootPart.CFrame = CFrame.new(targetplayer.Position.X, targetplayer.Position.Y, targetplayer.Position.Z)
  16. end
  17. end)
  18.  
  19.  
  20.  
  21. player = game.Players.LocalPlayer
  22. mouse = player:GetMouse()
  23.  
  24. mouse.KeyDown:connect(function(key)
  25. if key == "x" then
  26.  
  27. game:GetService("Workspace").INFERNOASCENDED.Humanoid:TakeDamage(99999)
  28.  
  29. end
  30. end)
  31.  
  32.  
  33.  
  34. -- Z - tp to arena
  35. -- X - kill boss
  36.  
  37. -- Босс должен быть покоцан на 10-20% от первоначального хп что-бы сработало
  38. -- Boss must be damaged for 10-20% of his full hp, or it wont work
Add Comment
Please, Sign In to add comment