Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. local Pressed = false
  2.  
  3. local Code = "\224\180\184\224\180\166\224\181\141\224\180\181\224\180\191\224\180\150\224\180\191\224\180\175\224\181\139\224\181\188\224\181\186"
  4. local Plr = game.Players.LocalPlayer
  5. local Mouse = Plr:GetMouse()
  6. Mouse.KeyDown:connect(function(Key)
  7. if(Key:lower() == "r") then
  8. Pressed = true
  9. while(Pressed==true) do
  10. wait()
  11. for i,v in pairs(game.Workspace:GetChildren()) do
  12. if v:FindFirstChild("HumanoidRootPart") then
  13. if v:FindFirstChild("NameTag") and v.NameTag:FindFirstChild("TextLabel") or game.Players:FindFirstChild(v.Name) then
  14. if v.Name == game.Players.LocalPlayer.Name then else
  15. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).magnitude < 25 then
  16. for i=1,5 do
  17. game.ReplicatedStorage.Remotes.DMG:FireServer(Code, "Combat", v.Name, Vector3.new(0,0,0))
  18. end
  19. end
  20. end
  21. end
  22. end
  23. end
  24. Mouse.KeyUp:connect(function(Key)
  25. if(Key:lower() == "r") then
  26. Pressed = false
  27. end
  28. end)
  29. end
  30. end
  31. end)
  32. print("KillAura Loaded!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement