Advertisement
UhhLegoboy

Jellyfish Jam!

Feb 20th, 2017
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.51 KB | None | 0 0
  1. --By UhhLegoboy
  2. print("Spongebob Morph Script loaded")
  3. wait(0)
  4. --Variables
  5. plr = game.Players.LocalPlayer
  6. char = plr.Character
  7.  
  8. --Morph
  9. char.Head.Mesh : Destroy()
  10. bc = char ["Body Colors"]
  11. bc.HeadColor = BrickColor.Yellow()
  12. bc.LeftArmColor = BrickColor.Yellow()
  13. bc.LeftLegColor = BrickColor.Yellow()
  14. bc.RightArmColor = BrickColor.Yellow()
  15. bc.RightLegColor = BrickColor.Yellow()
  16. bc.TorsoColor = BrickColor.Yellow()
  17.  
  18. for _, child in pairs(char:GetChildren()) do
  19.     if child.ClassName == 'Shirt' then
  20.         child:Destroy()
  21.     end
  22. end
  23. pants = Instance.new("Pants", char)
  24. pants.PantsTemplate = "rbxassetid://175523700"
  25. face = char.Head.face
  26. face.Texture = "rbxassetid://168978607"
  27.  
  28. --Hat Remove
  29. for _, child in pairs(char:GetChildren()) do
  30.     if child.ClassName == 'Accessory' then
  31.         child:Destroy()
  32.     end
  33. end
  34.  
  35. --Tshirt Remove
  36. for _, child in pairs(char:GetChildren()) do
  37.     if child.ClassName == 'ShirtGraphic' then
  38.         child:Destroy()
  39.     end
  40. end
  41.  
  42. --Song
  43. Sound = Instance.new("Sound", game.Workspace)
  44. Sound.Looped = true
  45. Sound.SoundId = "rbxassetid://571994166"
  46. Sound : play()
  47.  
  48. Rave = game.Lighting.Ambient
  49.  
  50. while true do
  51.     game.Lighting.Ambient = Color3.new(255,0,0)
  52.     wait(0.1)
  53.     game.Lighting.Ambient = Color3.new(255,170,0)
  54.     wait(0.1)
  55.     game.Lighting.Ambient = Color3.new(255,255,0)
  56.     wait(0.1)
  57.     game.Lighting.Ambient = Color3.new(0,255,0)
  58.     wait(0.1)
  59.     game.Lighting.Ambient = Color3.new(0,0,255)
  60.     wait(0.1)
  61.     game.Lighting.Ambient = Color3.new(170,0,255)
  62.     wait(0.1)
  63.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement