local tool = Instance.new("Tool") tool.Name = "Kick" tool.RequiresHandle = false tool.CanBeDropped = false tool.Parent = game.Players.LocalPlayer.Backpack tool.Equipped:Connect(function(mouse) mouse.Button1Down:connect(function() if mouse.Target and mouse.Target.Parent then local model = mouse.Target.Parent if game.Players:GetPlayerFromCharacter(model) then tool.Name = model.Name for i = 1, 20, 1 do game:GetService("ReplicatedStorage").RemoteEvents.VoteKicked:FireServer(model.Name) end end end end) end)