Advertisement
memberhero

LSSJ

Dec 18th, 2017
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. wait(1)
  2. plr = game.Players.LocalPlayer
  3. plr.Chatted:connect(function(msg)
  4. if msg == "LSSJ" then
  5. print("LSSJ")
  6. part = Instance.new("Part")
  7. part.CanCollide = false
  8. part.Anchored = true
  9. part.Transparency = 0.5
  10. part.Size = Vector3.new(6.32, 6.32, 6.32)
  11. part.Shape = "Ball"
  12. part.BrickColor = BrickColor.new("Lime green")
  13. part.Position = plr.Character.Torso.Position
  14. part.Parent = game.Workspace
  15. wait(2)
  16. part.Transparency = 0.1
  17. part.Transparency = 0.2
  18. part.Transparency = 0.3
  19. part.Transparency = 0.4
  20. part.Transparency = 0.5
  21. part.Transparency = 0
  22. wait(1)
  23. part:Remove()
  24. for i,v in next, game.Players.LocalPlayer.Character:GetChildren() do
  25. if v:IsA("Accessory") then
  26. v:Remove()
  27. end
  28. end
  29. wait(1)
  30. hat = Instance.new("Hat")
  31. hat.Parent = plr.Character
  32. part2 = Instance.new("Part")
  33. part2.Name = "Handle"
  34. part2.Parent = hat
  35. hatmesh = Instance.new("SpecialMesh")
  36. hatmesh.Scale = Vector3.new(1.05, 1.5, 1.05)
  37. hatmesh.VertexColor = Vector3.new(-65, 89, 14)
  38. hatmesh.MeshId = "http://www.roblox.com/asset/?id=19326912"
  39. hatmesh.TextureId = "http://www.roblox.com/asset/?id=770992416"
  40. hatmesh.Parent = part2
  41. sound = Instance.new("Sound")
  42. sound.Volume = 0.5
  43. sound.SoundId = "rbxassetid://895041803"
  44. sound.Parent = game.Workspace
  45. sound:Play()
  46. plr.Character.Head.face.Texture = "http://www.roblox.com/asset/?id=231488488"
  47. end
  48. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement