Meliodas0_0

Jailbreak KillAura

Jul 26th, 2019
752
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. function summonfire(position)
  2. for i, v in pairs(getreg()) do
  3. if type(v) == "function" then
  4. for i2, v2 in pairs(debug.getupvalues(v)) do
  5. if i2 == "D295ed" then
  6. FireServer = v2.FireServer
  7. end
  8. end;
  9. end;
  10. end;
  11.  
  12.  
  13. local Arguments = {
  14. [1] = "dk30w864",
  15. [2] = position,
  16. [3] = "RocketLauncher"
  17. }
  18.  
  19. FireServer(nil, unpack(Arguments))
  20. end
  21. p = Instance.new('Part')
  22. p.Parent = game.Players.LocalPlayer.Character
  23. p.Anchored = true
  24. p.CanCollide = false
  25. p.Size = Vector3.new(20, 0, 20, 20)
  26. p.Transparency = 0.5
  27. p.Color = Color3.new(1, 0, 0)
  28. p.Name = "KillAuraBounder"
  29. function onTouched(hit)
  30. local player = game.Players:GetPlayerFromCharacter(hit.Parent)
  31. if player then
  32. if player.Name == game.Players.LocalPlayer.Name then
  33. else
  34. summonfire(player.Character.Head.Position)
  35. end
  36.  
  37. end
  38. end
  39. p.Touched:connect(onTouched)
  40. while wait() do
  41. p.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  42. p.Parent = game.Players.LocalPlayer.Character
  43. end
Advertisement
Add Comment
Please, Sign In to add comment