SHOW:
|
|
- or go back to the newest paste.
| 1 | local Music = Instance.new("Sound", game.Workspace.erikaspukinskis1)
| |
| 2 | - | Music.SoundId = "rbxassetid://142295308" |
| 2 | + | Music.SoundId = "rbxassetid://976008059" |
| 3 | Music.Volume = 10 | |
| 4 | Pitch = 1 | |
| 5 | Music.Looped = true | |
| 6 | Music:Play() | |
| 7 | ||
| 8 | local Player = game.Players.LocalPlayer | |
| 9 | local cloud = Instance.new("Part",Player.Character.Torso)
| |
| 10 | cloud.BrickColor = BrickColor.new(320) | |
| 11 | cloud.Reflectance = 0.5 | |
| 12 | cloud.Anchored = true | |
| 13 | cloud.CanCollide = false | |
| 14 | cloud.FormFactor = Enum.FormFactor.Symmetric | |
| 15 | cloud.Size = Vector3.new(1,1,1) | |
| 16 | ||
| 17 | local mesh = Instance.new("SpecialMesh",cloud)
| |
| 18 | mesh.MeshType = Enum.MeshType.FileMesh | |
| 19 | mesh.MeshId = "rbxassetid://14846869" | |
| 20 | mesh.TextureId = "rbxassetid://14846834" | |
| 21 | mesh.Scale = Vector3.new(8,8,8) | |
| 22 | ||
| 23 | local P = Instance.new("ParticleEmitter",cloud)
| |
| 24 | P.Size = NumberSequence.new(0.75) | |
| 25 | P.LockedToPart = true | |
| 26 | P.Texture = "rbxassetid://14846949" | |
| 27 | P.Transparency = NumberSequence.new(0.5) | |
| 28 | P.Acceleration = Vector3.new(0, -20, 0) | |
| 29 | P.EmissionDirection = Enum.NormalId.Bottom | |
| 30 | P.Enabled = true | |
| 31 | P.Rate = 30 | |
| 32 | P.Rotation = NumberRange.new(0,360) | |
| 33 | P.RotSpeed = NumberRange.new(0,15) | |
| 34 | P.Speed = NumberRange.new(3,5) | |
| 35 | P.VelocitySpread = 80 | |
| 36 | ||
| 37 | while wait() do | |
| 38 | cloud.CFrame = CFrame.new() + Vector3.new(Player.Character.Torso.CFrame.x,Player.Character.Torso.CFrame.y,Player.Character.Torso.CFrame.z) + Vector3.new(0,20,0) | |
| 39 | end |