Advertisement
Sungmingamerpro13

Brother Gamepass

Dec 12th, 2024
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.74 KB | None | 0 0
  1. local BrotherGamepass = (117393858)
  2.  
  3. game.Players.PlayerAdded:Connect(function(player)
  4.     player.CharacterAdded:Connect(function()
  5.         if game:GetService("MarketplaceService"):UserOwnsGamePassAsync(player.UserId, BrotherGamepass) then
  6.             player.Character.Humanoid.MaxHealth = player.Character.Humanoid.MaxHealth
  7.             player.Character.Humanoid.BodyDepthScale.Value = 1
  8.             player.Character.Humanoid.BodyHeightScale.Value = 1
  9.             player.Character.Humanoid.BodyWidthScale.Value = 1
  10.         else
  11.             player.Character.Humanoid.MaxHealth = player.Character.Humanoid.MaxHealth
  12.             player.Character.Humanoid.BodyDepthScale.Value = 0.7
  13.             player.Character.Humanoid.BodyHeightScale.Value = 0.7
  14.             player.Character.Humanoid.BodyWidthScale.Value = 0.6
  15.         end
  16.     end)
  17. end)
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement