Advertisement
Guest User

Roblox Prison Life kill scripts

a guest
May 19th, 2019
5,614
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. print("Prison life teleport kill script by LiamBogur")
  2. targetplayer = "player"
  3. local me = game:GetService('Players').LocalPlayer.Character.HumanoidRootPart
  4. wait(0.25)
  5. me.CFrame = game.Players[targetplayer].Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  6. wait(0.25)
  7. for i = 1, 10 do
  8. game.ReplicatedStorage.meleeEvent:FireServer(game.Players[targetplayer])
  9. end
  10.  
  11.  
  12.  
  13. print("Prison life click kill script by LiamBogur")
  14. local Tool = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  15. Tool.Name = "FE Kill Tool"
  16. local Mouse = game.Players.LocalPlayer:GetMouse()
  17. Tool.Selected:connect(function()
  18. Mouse.Button1Down:connect(function()
  19. if Tool.Active == true then
  20. if game:GetService("Players"):FindFirstChild(Mouse.Target.Parent.Name) ~= nil then
  21. for i = 1, 10 do
  22. game.ReplicatedStorage.meleeEvent:FireServer(game.Players[Mouse.Target.Parent.Name])
  23. end
  24. end
  25. end
  26. end)
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement