Upscalefanatic3

Scp-106 *fixed*

Sep 25th, 2017
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. print("SCP-106 Loaded!")
  2. wait(0.01)
  3. print("Made by c00lkidd")
  4. warn("Works on R6 and R15 too!")
  5. LPlayer = game.Players.LocalPlayer
  6. ShirtID = 773278673
  7. PantsID = 746405640
  8. FaceID = 169394778
  9. BackSong = 328792905
  10. KillSound = 347611423
  11.  
  12. function Morph()
  13. LPlayer.Character.Shirt.ShirtTemplate = ("http://www.roblox.com/asset/?id="..ShirtID)
  14. LPlayer.Character.Pants.PantsTemplate = ("http://www.roblox.com/asset/?id="..PantsID)
  15. LPlayer.Character.Head.face.Texture = ("http://www.roblox.com/asset/?id="..FaceID)
  16. LPlayer.Character.Head.Mesh.MeshType = ("Head")
  17. for _,v in pairs(LPlayer.Character:GetChildren())do
  18. if v.ClassName == "Accessory" then
  19. v:Destroy()
  20. end
  21. end
  22. end
  23. function Song()
  24. local So = Instance.new("Sound",game.Workspace)
  25. So.Name = "TributeSong"
  26. So.SoundId = "rbxassetid://"..BackSong
  27. So.Looped = true
  28. So.Volume = 2
  29. So:Play()
  30. end
  31. function PlayKill()
  32. local S = Instance.new("Sound",LPlayer.Character)
  33. S.Name = "SCP-Music"
  34. S.SoundId = "rbxassetid://"..KillSound
  35. S:Play()
  36. wait(5)
  37. S:Destroy()
  38. end
  39. function BodyColors()
  40. LPlayer.Character["Body Colors"].HeadColor = BrickColor.new("Really black")
  41. LPlayer.Character["Body Colors"].TorsoColor = BrickColor.new("Really black")
  42. LPlayer.Character["Body Colors"].LeftArmColor = BrickColor.new("Really black")
  43. LPlayer.Character["Body Colors"].RightArmColor = BrickColor.new("Really black")
  44. LPlayer.Character["Body Colors"].LeftLegColor = BrickColor.new("Really black")
  45. LPlayer.Character["Body Colors"].RightLegColor = BrickColor.new("Really black")
  46. end
  47.  
  48. print("Initiate...")
  49. for _,v in pairs(game.Workspace:GetChildren())do
  50. if v.Name == "TributeSong" then
  51. v:Destroy()
  52. end
  53. end
  54. Song()
  55. Morph()
  56. BodyColors()
  57. print("Initiated!")
  58. LPlayer.Character.Humanoid.Touched:connect(function(Touched)
  59. Touched:BreakJoints()
  60. end)
Add Comment
Please, Sign In to add comment