The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Prison Life script pastebin roblox
By LINK GAME on 2024-09-19 08:00 am | Syntax: LUA | Views: 11



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. for i,v in pairs(game.ReplicatedStorage:GetChildren()) do
  2. if string.find(v.Name,"Too") then
  3. _G.gunremote = v
  4. end
  5. end
  6. while wait() do
  7. for i,p in pairs(game.Players:GetChildren()) do
  8. pcall(function()
  9. local A_1 =  {
  10. ["Function"] = "Hurt",
  11. ["Victim"] = p.Character.Humanoid,
  12. ["Damage"] = 40.3
  13. }
  14. local Event = _G.gunremote
  15. for i = 1,3 do
  16. Event:FireServer(A_1)
  17. end
  18. end)
  19. end
  20. end