Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("SCP-106 Loaded!")
- wait(0.01)
- print("Made by c00lkidd")
- warn("Works on R6 and R15 too!")
- LPlayer = game.Players.LocalPlayer
- ShirtID = 773278673
- PantsID = 746405640
- FaceID = 169394778
- BackSong = 328792905
- KillSound = 347611423
- function Morph()
- LPlayer.Character.Shirt.ShirtTemplate = ("http://www.roblox.com/asset/?id="..ShirtID)
- LPlayer.Character.Pants.PantsTemplate = ("http://www.roblox.com/asset/?id="..PantsID)
- LPlayer.Character.Head.face.Texture = ("http://www.roblox.com/asset/?id="..FaceID)
- LPlayer.Character.Head.Mesh.MeshType = ("Head")
- for _,v in pairs(LPlayer.Character:GetChildren())do
- if v.ClassName == "Accessory" then
- v:Destroy()
- end
- end
- end
- function Song()
- local So = Instance.new("Sound",game.Workspace)
- So.Name = "TributeSong"
- So.SoundId = "rbxassetid://"..BackSong
- So.Looped = true
- So.Volume = 2
- So:Play()
- end
- function PlayKill()
- local S = Instance.new("Sound",LPlayer.Character)
- S.Name = "SCP-Music"
- S.SoundId = "rbxassetid://"..KillSound
- S:Play()
- wait(5)
- S:Destroy()
- end
- function BodyColors()
- LPlayer.Character["Body Colors"].HeadColor = BrickColor.new("Really black")
- LPlayer.Character["Body Colors"].TorsoColor = BrickColor.new("Really black")
- LPlayer.Character["Body Colors"].LeftArmColor = BrickColor.new("Really black")
- LPlayer.Character["Body Colors"].RightArmColor = BrickColor.new("Really black")
- LPlayer.Character["Body Colors"].LeftLegColor = BrickColor.new("Really black")
- LPlayer.Character["Body Colors"].RightLegColor = BrickColor.new("Really black")
- end
- print("Initiate...")
- for _,v in pairs(game.Workspace:GetChildren())do
- if v.Name == "TributeSong" then
- v:Destroy()
- end
- end
- Song()
- Morph()
- BodyColors()
- print("Initiated!")
- LPlayer.Character.Humanoid.Touched:connect(function(Touched)
- Touched:BreakJoints()
- end)
Add Comment
Please, Sign In to add comment