local PlayerName = "LuckyX128345" -- Put Display Name (can't be self) local Reason = "Being Gay" -- Custom Reason Badwords are allow without Censored local rs = game:GetService("ReplicatedStorage") local VoteKickEvent = rs:FindFirstChild("InitiateVoteKick") for _, target in pairs(game:GetService("Players"):GetPlayers()) do if string.lower(target.DisplayName) == string.lower(PlayerName) or string.lower(target.Name) == string.lower(PlayerName) then VoteKickEvent:FireServer(target.UserId, Reason) end end