SHOW:
|
|
- or go back to the newest paste.
| 1 | local Plr = game.Players.LocalPlayer | |
| 2 | local PChar = Plr.Character | |
| 3 | ||
| 4 | wait(0.5) | |
| 5 | ||
| 6 | local CharPart = Instance.new("Part", PChar)
| |
| 7 | CharPart.Size = Vector3.new(9.067, 12.97, 29.795) | |
| 8 | CharPart.Rotation = Vector3.new(-180, 0, -180) | |
| 9 | CharPart.Name = "Danky" | |
| 10 | CharPart.CanCollide = true | |
| 11 | local CharMesh = Instance.new("SpecialMesh", CharPart)
| |
| 12 | CharMesh.MeshId = "rbxassetid://15158282" | |
| 13 | CharMesh.TextureId = "rbxassetid://15158282" | |
| 14 | CharMesh.Scale = Vector3.new(0.03, 0.03, 0.03) | |
| 15 | local CharWeld = Instance.new("Weld", PChar.Torso)
| |
| 16 | CharWeld.Part0 = CharPart | |
| 17 | CharWeld.Part1 = PChar.Torso | |
| 18 | CharWeld.C0 = CFrame.Angles(0, math.pi, 0) | |
| 19 | CharWeld.Name = "DankyWeld" | |
| 20 | local CharLight = Instance.new("SpotLight", CharPart)
| |
| 21 | CharLight.Face = "Back" | |
| 22 | CharLight.Range = 60 | |
| 23 | ||
| 24 | local Humanoid = PChar:WaitForChild("Humanoid")
| |
| 25 | ||
| 26 | Humanoid.WalkSpeed = 145 | |
| 27 | ||
| 28 | local Music = Instance.new("Sound", CharPart)
| |
| 29 | Music.SoundId = "rbxassetid://131530786" | |
| 30 | Music.Volume = 1 | |
| 31 | Music.Looped = true | |
| 32 | Music:Play() | |
| 33 | ||
| 34 | CharPart.Touched:connect(function(ChildTouched) | |
| 35 | if ChildTouched.Parent:FindFirstChild("Humanoid") == nil then else
| |
| 36 | if ChildTouched.Parent.Name == Plr.Name then return end | |
| 37 | local BomSFX = Instance.new("Sound", game.Workspace)
| |
| 38 | BomSFX.SoundId = "rbxassetid://141679994" | |
| 39 | BomSFX.Volume = 1 | |
| 40 | BomSFX:Play() | |
| 41 | ChildTouched.Parent:FindFirstChild("Humanoid").Health = 0
| |
| 42 | end | |
| 43 | end) | |
| 44 | ||
| 45 | wait(0.5) |