SHOW:
|
|
- or go back to the newest paste.
1 | wait (1) | |
2 | local truck = Instance.new("Part",workspace) | |
3 | - | local victim = workspace.Dummy --replace it with your enemy |
3 | + | local victim = workspace.NINJABLADE100n2 --replace it with your enemy |
4 | - | local user = workspace.xXRedPawnerXx --replace it with you |
4 | + | local user = workspace.timetodie23232223 --replace it with you |
5 | local sound = Instance.new("Sound") | |
6 | local mesh = Instance.new("SpecialMesh") | |
7 | ||
8 | function kill(hit) | |
9 | hit:BreakJoints() | |
10 | sound:Destroy() | |
11 | game:GetService("Chat"):Chat(user.Head, "WRYYYYYYYYYY", Enum.ChatColor.Red) | |
12 | user.Humanoid.Jump = true | |
13 | wait (0.01) | |
14 | script:Destroy() | |
15 | end | |
16 | ||
17 | game:GetService("Chat"):Chat(user.Head, "ROAD ROLLER DA", Enum.ChatColor.Red) | |
18 | wait (1) | |
19 | game:GetService("Chat"):Chat(victim.Head, "What did you say?", Enum.ChatColor.Red) | |
20 | wait (2) | |
21 | truck.CanCollide = true | |
22 | truck.Position = victim.Torso.Position + Vector3.new(0,300,0) | |
23 | truck.Name = "WRYYY_Truck" | |
24 | ||
25 | sound.SoundId = "rbxassetid://252754492" | |
26 | sound.Parent = user.Head | |
27 | sound.PlayOnRemove = true | |
28 | ||
29 | mesh.Parent = truck | |
30 | mesh.MeshId = "rbxassetid://578209133" | |
31 | mesh.TextureId = "rbxassetid://578209144" | |
32 | truck.Size = truck.Size + Vector3.new(41.34 - 4, 54.33 - 1, 128.12 - 12) | |
33 | ||
34 | truck.Touched:connect(kill) |