Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --By UhhLegoboy
- print("Spongebob Morph Script loaded")
- wait(0)
- --Variables
- plr = game.Players.LocalPlayer
- char = plr.Character
- --Morph
- char.Head.Mesh : Destroy()
- bc = char ["Body Colors"]
- bc.HeadColor = BrickColor.Yellow()
- bc.LeftArmColor = BrickColor.Yellow()
- bc.LeftLegColor = BrickColor.Yellow()
- bc.RightArmColor = BrickColor.Yellow()
- bc.RightLegColor = BrickColor.Yellow()
- bc.TorsoColor = BrickColor.Yellow()
- for _, child in pairs(char:GetChildren()) do
- if child.ClassName == 'Shirt' then
- child:Destroy()
- end
- end
- pants = Instance.new("Pants", char)
- pants.PantsTemplate = "rbxassetid://175523700"
- face = char.Head.face
- face.Texture = "rbxassetid://168978607"
- --Hat Remove
- for _, child in pairs(char:GetChildren()) do
- if child.ClassName == 'Accessory' then
- child:Destroy()
- end
- end
- --Tshirt Remove
- for _, child in pairs(char:GetChildren()) do
- if child.ClassName == 'ShirtGraphic' then
- child:Destroy()
- end
- end
- --Song
- Sound = Instance.new("Sound", game.Workspace)
- Sound.Looped = true
- Sound.SoundId = "rbxassetid://571994166"
- Sound : play()
- Rave = game.Lighting.Ambient
- while true do
- game.Lighting.Ambient = Color3.new(255,0,0)
- wait(0.1)
- game.Lighting.Ambient = Color3.new(255,170,0)
- wait(0.1)
- game.Lighting.Ambient = Color3.new(255,255,0)
- wait(0.1)
- game.Lighting.Ambient = Color3.new(0,255,0)
- wait(0.1)
- game.Lighting.Ambient = Color3.new(0,0,255)
- wait(0.1)
- game.Lighting.Ambient = Color3.new(170,0,255)
- wait(0.1)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement