SHOW:
|
|
- or go back to the newest paste.
| 1 | - | |
| 1 | + | local s = Instance.new("Sound")
|
| 2 | - | local Scale = game.Players.LocalPlayer.Character.Torso.Size.X/2*(game.Players.LocalPlayer.Character.Torso:FindFirstChild("ScaleInserted") ~= nil and game.Players.LocalPlayer.Character.Torso:FindFirstChild("ScaleInserted").Scale.Z or 1)*0.8
|
| 2 | + | |
| 3 | - | local Speed = 20*Scale |
| 3 | + | s.Name = "Sound" |
| 4 | - | local Gravity = 0.1 |
| 4 | + | s.SoundId = "http://www.roblox.com/asset/?id=1556425959" |
| 5 | - | |
| 5 | + | s.Volume = 10 |
| 6 | - | local Player = game.Players.LocalPlayer |
| 6 | + | s.Looped = true |
| 7 | - | local Character = Player.Character |
| 7 | + | s.archivable = false |
| 8 | - | local Humanoid = Character.Humanoid |
| 8 | + | |
| 9 | - | Humanoid:SetStateEnabled(Enum.HumanoidStateType.Ragdoll,false) |
| 9 | + | s.Parent = game.Workspace |
| 10 | - | local Torso = Character.HumanoidRootPart |
| 10 | + | |
| 11 | - | local Mouse = game.Players.LocalPlayer:GetMouse() |
| 11 | + | wait(3) |
| 12 | - | local RenderStepped = game:GetService("RunService").RenderStepped
|
| 12 | + | |
| 13 | - | local Camera = Workspace.CurrentCamera |
| 13 | + | s:play() |