bleedvlone

KICK V3

Mar 28th, 2025
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local teleportService = game:GetService("TeleportService")
  3. local placeId = game.PlaceId
  4.  
  5. local function createPopup(message, color)
  6. local popup = Instance.new("ScreenGui")
  7. popup.Parent = player.PlayerGui
  8.  
  9. local frame = Instance.new("Frame")
  10. frame.Size = UDim2.new(0, 300, 0, 100)
  11. frame.Position = UDim2.new(0.5, -150, 0.5, -50)
  12. frame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  13. frame.Parent = popup
  14.  
  15. local textLabel = Instance.new("TextLabel")
  16. textLabel.Size = UDim2.new(1, 0, 1, 0)
  17. textLabel.Text = message
  18. textLabel.TextColor3 = color
  19. textLabel.BackgroundTransparency = 1
  20. textLabel.Parent = frame
  21.  
  22. game:GetService("TweenService"):Create(frame, TweenInfo.new(1), {Transparency = 1}):Play()
  23. wait(2)
  24. popup:Destroy()
  25. end
  26.  
  27. local function attemptBypass()
  28. local coreGui = game:GetService("CoreGui")
  29. local kickScreen = nil
  30. local kickFound = false --flag to check if kick screen was found.
  31.  
  32. -- Force true positive detection
  33. for _, child in ipairs(coreGui:GetChildren()) do
  34. if child:IsA("ScreenGui") then
  35. for _, descendant in ipairs(child:GetDescendants()) do
  36. if (descendant:IsA("TextLabel") or descendant:IsA("TextBox") or descendant:IsA("TextButton")) and (descendant.Text:lower():match("kick") or descendant.Text:lower():match("ban")) then
  37. kickScreen = child
  38. kickFound = true;
  39. break
  40. end
  41. end
  42. end
  43. if kickScreen then break end
  44. end
  45.  
  46. if kickFound then
  47. if kickScreen then
  48. kickScreen:Destroy()
  49.  
  50. if player.Character then
  51. player.Character:Destroy()
  52. end
  53. player:LoadCharacter()
  54.  
  55. player.PlayerGui.Disabled = false
  56. player.PlayerScripts.Disabled = false
  57.  
  58. local playerData = player:FindFirstChild("PlayerData")
  59. if playerData then
  60. pcall(function() playerData:Destroy() end)
  61. end
  62.  
  63. wait(3)
  64. local success, errorMessage = pcall(function() teleportService:Teleport(placeId, player) end)
  65.  
  66. if success then
  67. createPopup("Kick bypass successful!", Color3.new(0, 1, 0))
  68. else
  69. createPopup("Kick bypass failed: " .. (errorMessage or "Unknown error"), Color3.new(1, 0, 0))
  70. end
  71.  
  72. for _, object in pairs(player:GetChildren()) do
  73. if object:IsA("IntValue") or object:IsA("BoolValue") or object:IsA("StringValue") then
  74. pcall(function() object.Value = nil end)
  75. end
  76. end
  77. for _, object in pairs(player:GetDescendants()) do
  78. if object:IsA("IntValue") or object:IsA("BoolValue") or object:IsA("StringValue") then
  79. pcall(function() object.Value = nil end)
  80. end
  81. end
  82.  
  83. else
  84. createPopup("Kick screen not found.", Color3.new(1, 0.5, 0))
  85. end
  86. else
  87. createPopup("No kick screen detected.", Color3.new(1, 0.5, 0))
  88. end
  89. end
  90.  
  91. -- Check periodically and on child added
  92. while true do
  93. attemptBypass()
  94. wait(1)
  95. end
  96.  
  97. game:GetService("CoreGui").ChildAdded:Connect(function(child)
  98. attemptBypass()
  99. end)
Advertisement
Add Comment
Please, Sign In to add comment