SCREWunowlol
Aug 16th, 2024
43
0
Never
This is comment for paste Prison Life Crash Script
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. screw u op
  2. -- Made By Jake11price --
  3. -- Crash Server --
  4. local Gun = "Remington 870"
  5.  
  6. local Player = game.Players.LocalPlayer.Name
  7.  
  8. game.Workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.giver[Gun].ITEMPICKUP)
  9.  
  10. for i,v in pairs(game.Players[Player].Backpack:GetChildren()) do
  11. if v.name == (Gun) then
  12. v.Parent = game.Players.LocalPlayer.Character
  13. end
  14. end
  15.  
  16. Gun = game.Players[Player].Character[Gun]
  17.  
  18. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):UnequipTools()
  19.  
  20. function FireGun(target)
  21. coroutine.resume(coroutine.create(function()
  22. local bulletTable = {}
  23. table.insert(bulletTable, {
  24. Hit = target,
  25. Distance = 100,
  26. Cframe = CFrame.new(0,1,1),
  27. RayObject = Ray.new(Vector3.new(0.1,0.2), Vector3.new(0.3,0.4))
  28. })
  29. game.ReplicatedStorage.ShootEvent:FireServer(bulletTable, Gun)
  30. wait()
  31. end))
  32. end
  33.  
  34. while game:GetService("RunService").Stepped:wait() do
  35. for count = 0, 10, 10 do
  36. FireGun()
  37. end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment