Advertisement
Sungmingamerpro13

DeathScreen type A (Infinite Lives Gamepass)

Mar 17th, 2025 (edited)
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. local InfiniteLivesGamepass = 1101486905
  2.  
  3. game.Players.PlayerAdded:connect(function(plr) --> When player added then function
  4.     plr.CharacterAdded:connect(function(char) --> When character added then function
  5.         repeat wait() until char.Humanoid
  6.         char.Humanoid.Died:connect(function() --> When the user dies.
  7.             if MarketplaceService:UserOwnsGamePassAsync(plr.UserId, InfiniteLivesGamepass) then --> If the user owns the gamepass then
  8.                 plr:LoadCharacter() --> Load the character back into the game instantly.
  9.                 PurchasedRespawn = true
  10.             end
  11.         end)
  12.     end)
  13. end)
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement