Posted
-------------------------------------
pcall(function()
local player = game:GetService('Players').LocalPlayer;
local mouse = player:GetMouse();
mouse.KeyDown:connect(function(key) if key == 'q' then
local vest = Instance.new('Part', player.Character);
   vest.CanCollide = false;
   vest.BrickColor = BrickColor.Black();
   vest.Material = Enum.Material.SmoothPlastic;
   vest.Size = Vector3.new(2.1, 2.1, 1.1);
local beep = Instance.new('PointLight', vest);
   beep.Color = Color3.new(1, 0, 0);
local weld = Instance.new('Weld', vest);weld.Part0 = player.Character.Torso;weld.Part1 = vest;
delay(5, function()
   local oof = Instance.new('Explosion');
   oof.Position = vest.Position;
   oof.BlastRadius = 7;
   oof.Parent = workspace;
end)
end end);
end);
-------------------------------------
Press Q to enable it.
Replied
Cancel
Post
Reputation Goal: 69
#NoMoreMods
#MEWANTGLOBALCHAT
Replied
Cancel
Post
Replied
Cancel
Post
Replied
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post