Advertisement
Sungmingamerpro13

Roles Main v2

May 20th, 2024
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.37 KB | None | 0 0
  1. if player:WaitForChild("Role").Value >= "Protector" then
  2.             player:WaitForChild("Role").Value = "Protector"
  3.             player.Character.Humanoid.BodyDepthScale.Value = 1
  4.             player.Character.Humanoid.BodyHeightScale.Value = 1
  5.             player.Character.Humanoid.BodyWidthScale.Value = 1
  6.         elseif player:WaitForChild("Role").Value >= "Medic" then
  7.             player:WaitForChild("Role").Value = "Medic"
  8.             player.Character.Humanoid.BodyDepthScale.Value = 1
  9.             player.Character.Humanoid.BodyHeightScale.Value = 1
  10.             player.Character.Humanoid.BodyWidthScale.Value = 1
  11.         elseif player:WaitForChild("Role").Value >= "PREMIUM" then
  12.             player:WaitForChild("Role").Value = "PREMIUM"
  13.             player.Character.Humanoid.BodyDepthScale.Value = 1
  14.             player.Character.Humanoid.BodyHeightScale.Value = 1
  15.             player.Character.Humanoid.BodyWidthScale.Value = 1
  16.         elseif player:WaitForChild("Role").Value >= "Hungry" then
  17.             player:WaitForChild("Role").Value = "Hungry"
  18.             player.Character.Humanoid.BodyDepthScale.Value = 0.9
  19.             player.Character.Humanoid.BodyHeightScale.Value = 0.7
  20.             player.Character.Humanoid.BodyWidthScale.Value = 0.7
  21.         elseif player:WaitForChild("Role").Value >= "Fighter" then
  22.             player:WaitForChild("Role").Value = "Fighter"
  23.             player.Character.Humanoid.BodyDepthScale.Value = 0.7
  24.             player.Character.Humanoid.BodyHeightScale.Value = 0.7
  25.             player.Character.Humanoid.BodyWidthScale.Value = 0.6
  26.         end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement