Advertisement
fusionfriends

SANS

Jun 3rd, 2019
992
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. local Character = owner.Character
  2.  
  3. Character["Left Arm"].Transparency = 1
  4. Character["Right Arm"].Transparency = 1
  5. local Head = Instance.new("SpecialMesh",Character.Head)
  6. local Body = Instance.new("SpecialMesh",Character.Torso)
  7. local LeftLeg = Instance.new("SpecialMesh",Character["Left Leg"])
  8. local RightLeg = Instance.new("SpecialMesh",Character["Right Leg"])
  9. Head.MeshId = "rbxassetid://430073345"
  10. Head.TextureId = "rbxassetid://430073362"
  11. Body.MeshId = "rbxassetid://430072717"
  12. Body.TextureId = "rbxassetid://430072723"
  13. LeftLeg.MeshId = "rbxassetid://430069778"
  14. LeftLeg.TextureId = "rbxassetid://430069795"
  15. RightLeg.MeshId = "rbxassetid://430070587"
  16. RightLeg.TextureId = "rbxassetid://430070605"
  17. for i,v in pairs(Character:GetChildren()) do
  18. if v:IsA("Accessory") then
  19. v:Destroy()
  20. end
  21. end
  22. local Sound = Instance.new("Sound",Character.Torso)
  23. Sound.SoundId = "rbxassetid://421352433"
  24. Sound.Looped = true
  25. Sound.Volume = 5
  26. Sound:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement