Advertisement
Alternativez

R6

Apr 2nd, 2025
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | Gaming | 0 0
  1. local Character = script.Parent
  2. local Player = game:GetService("Players"):GetPlayerFromCharacter(Character)
  3. local Humanoid = Character:FindFirstChild("Humanoid")
  4.  
  5. if Humanoid then
  6.     if Humanoid.RigType == Enum.HumanoidRigType.R15 then
  7.         Humanoid.RigType = Enum.HumanoidRigType.R6
  8.         Player:LoadCharacter()
  9.         task.wait(.5)
  10.         script:Destroy()
  11.     else
  12.         script:Destroy()
  13.     end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement