-- [[ πŸ”‘ KEY SYSTEM START ]] -- local Players = game:GetService("Players") local CoreGui = game:GetService("CoreGui") -- Agar pehle se Key Window khuli ho toh use delete karein if CoreGui:FindFirstChild("AtulKeySystem") then CoreGui.AtulKeySystem:Destroy() end local CorrectKey = "NAMELESS X ATUL" -- πŸ‘ˆ Yahan apni marzi ki key badal sakte hain local KeyEntered = false -- Key GUI Banayein local KeyGui = Instance.new("ScreenGui", CoreGui) KeyGui.Name = "AtulKeySystem" local KeyFrame = Instance.new("Frame", KeyGui) KeyFrame.Size = UDim2.new(0, 320, 0, 160) KeyFrame.Position = UDim2.new(0.5, -160, 0.5, -80) KeyFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 25) KeyFrame.Active = true Instance.new("UICorner", KeyFrame).CornerRadius = UDim.new(0, 12) -- Border Light Effect local KeyStroke = Instance.new("UIStroke", KeyFrame) KeyStroke.Color = Color3.fromRGB(0, 170, 255) KeyStroke.Thickness = 1.5 local KeyTitle = Instance.new("TextLabel", KeyFrame) KeyTitle.Size = UDim2.new(1, 0, 0, 35) KeyTitle.Text = "πŸ”‘ ENTER ATUL UI KEY" KeyTitle.TextColor3 = Color3.fromRGB(0, 170, 255) KeyTitle.Font = Enum.Font.GothamBlack KeyTitle.TextSize = 16 KeyTitle.BackgroundTransparency = 1 local KeyInput = Instance.new("TextBox", KeyFrame) KeyInput.Size = UDim2.new(0, 260, 0, 35) KeyInput.Position = UDim2.new(0.5, -130, 0.45, -17) KeyInput.PlaceholderText = "Yahan Key Likhein..." KeyInput.Text = "" KeyInput.TextColor3 = Color3.new(1, 1, 1) KeyInput.Font = Enum.Font.GothamSemibold KeyInput.TextSize = 14 KeyInput.BackgroundColor3 = Color3.fromRGB(25, 25, 40) Instance.new("UICorner", KeyInput).CornerRadius = UDim.new(0, 6) local SubmitBtn = Instance.new("TextButton", KeyFrame) SubmitBtn.Size = UDim2.new(0, 120, 0, 35) SubmitBtn.Position = UDim2.new(0.5, -60, 0.8, -17) SubmitBtn.Text = "VERIFY" SubmitBtn.Font = Enum.Font.GothamBlack SubmitBtn.TextSize = 14 SubmitBtn.BackgroundColor3 = Color3.fromRGB(140, 0, 255) SubmitBtn.TextColor3 = Color3.new(1, 1, 1) Instance.new("UICorner", SubmitBtn).CornerRadius = UDim.new(0, 6) SubmitBtn.MouseButton1Click:Connect(function() if KeyInput.Text == CorrectKey then KeyEntered = true KeyGui:Destroy() else KeyInput.Text = "" KeyInput.PlaceholderText = "❌ GALAT KEY! ATUL SE MANG KEY." end end) -- Jab tak user sahi key nahi dalega, niche ka main script load nahi hoga repeat task.wait() until KeyEntered == true -- [[ πŸ”‘ KEY SYSTEM END ]] ---- [[ πŸ”± LORD ATUL- CLEAN INSIDE UI πŸ”± ]] -- local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local TweenService = game:GetService("TweenService") local player = Players.LocalPlayer -- Safe check for existing GUI if CoreGui:FindFirstChild("ATULKING") then CoreGui.ATULKING:Destroy() end local sg = Instance.new("ScreenGui", CoreGui) sg.Name = "ATULKING" -- βœ… UNIVERSAL DRAG (PC + MOBILE) local function makeDraggable(frame) local dragging = false local dragStart local startPos local function update(input) local delta = input.Position - dragStart frame.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end frame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) frame.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then if dragging then update(input) end end end) end -- MAIN GUI local Main = Instance.new("Frame", sg) Main.Size = UDim2.new(0, 430, 0, 370) Main.Position = UDim2.new(0.5, -215, 0.5, -185) Main.BackgroundColor3 = Color3.fromRGB(15,15,25) Main.Visible = true -- Sahi key ke baad directly dikhana hai Main.Active = true Instance.new("UICorner", Main).CornerRadius = UDim.new(0,14) makeDraggable(Main) -- WAVE GRADIENT local grad = Instance.new("UIGradient", Main) grad.Color = ColorSequence.new{ ColorSequenceKeypoint.new(0, Color3.fromRGB(0,170,255)), ColorSequenceKeypoint.new(0.5, Color3.fromRGB(140,0,255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(0,170,255)) } task.spawn(function() while true do grad.Offset = Vector2.new((tick()%5)/5,0) task.wait() end end) -- BORDER EFFECT local Stroke = Instance.new("UIStroke", Main) task.spawn(function() while true do Stroke.Color = Color3.fromHSV((tick()%5)/5,1,1) Stroke.Thickness = 2 + math.sin(tick()*3) task.wait() end end) -- SIDEBAR local Sidebar = Instance.new("ScrollingFrame", Main) Sidebar.Size = UDim2.new(0,115,1,-20) Sidebar.Position = UDim2.new(0,10,0,10) Sidebar.BackgroundColor3 = Color3.fromRGB(20,20,30) Sidebar.ScrollBarThickness = 4 Sidebar.CanvasSize = UDim2.new(0,0,0,0) Sidebar.AutomaticCanvasSize = Enum.AutomaticSize.Y Sidebar.ClipsDescendants = true Instance.new("UICorner", Sidebar) local list = Instance.new("UIListLayout", Sidebar) list.Padding = UDim.new(0,6) -- PAGES HOLDER local Pages = Instance.new("Frame", Main) Pages.Size = UDim2.new(1,-140,1,-20) Pages.Position = UDim2.new(0,130,0,10) Pages.BackgroundTransparency = 1 local function createPage() local p = Instance.new("ScrollingFrame", Pages) p.Size = UDim2.new(1,0,1,0) p.CanvasSize = UDim2.new(0,0,2.5,0) p.BackgroundTransparency = 1 p.Visible = false Instance.new("UIListLayout", p).Padding = UDim.new(0,6) return p end local P1 = createPage() local P2 = createPage() local P3 = createPage() local P4 = createPage() local P5 = createPage() local P6 = createPage() local P7 = createPage() -- Fixed Credits target page -- 🌈 TAB EFFECT (RGB) local function tabEffect(b) Instance.new("UICorner", b) local s = Instance.new("UIStroke", b) task.spawn(function() while b.Parent do s.Color = Color3.fromHSV((tick()%5)/5,1,1) task.wait() end end) b.MouseEnter:Connect(function() TweenService:Create(b,TweenInfo.new(0.15),{BackgroundColor3=Color3.fromRGB(45,45,80)}):Play() end) b.MouseLeave:Connect(function() TweenService:Create(b,TweenInfo.new(0.15),{BackgroundColor3=Color3.fromRGB(25,25,40)}):Play() end) end -- TAB CREATION local function tab(name, p) local b = Instance.new("TextButton", Sidebar) b.Size = UDim2.new(1,-10,0,42) b.BackgroundColor3 = Color3.fromRGB(30,30,50) b.Text = name b.TextColor3 = Color3.fromRGB(0,200,255) b.Font = Enum.Font.GothamBlack b.TextSize = 13 tabEffect(b) b.MouseButton1Click:Connect(function() for _,v in pairs(Pages:GetChildren()) do if v:IsA("ScrollingFrame") then v.Visible = false end end p.Visible = true end) end -- 🧊 UNIFIED BUTTON FUNCTION local function btn(txt, parent, func) local b = Instance.new("TextButton", parent) b.Size = UDim2.new(1, -10, 0, 32) b.BackgroundColor3 = Color3.fromRGB(0,0,204) b.Text = txt b.TextColor3 = Color3.fromRGB(255,255,255) b.Font = Enum.Font.SourceSansBold b.TextSize = 14 local corner = Instance.new("UICorner", b) corner.CornerRadius = UDim.new(0, 6) local stroke = Instance.new("UIStroke", b) stroke.Color = Color3.fromRGB(0,200,255) stroke.Thickness = 1.2 b.MouseEnter:Connect(function() TweenService:Create(b, TweenInfo.new(0.15), {BackgroundColor3 = Color3.fromRGB(45,45,80)}):Play() end) b.MouseLeave:Connect(function() TweenService:Create(b, TweenInfo.new(0.15), {BackgroundColor3 = Color3.fromRGB(0,0,204)}):Play() end) b.MouseButton1Click:Connect(function() pcall(function() func(b) end) end) return b end -- LOAD TABS tab("TROLL βš”", P1) tab("SPAMMER πŸŒ€", P2) tab("ADMIN πŸ”₯", P3) tab("OTHER ☣", P4) tab("SHIELD πŸ€–", P5) tab("FAKEOUT 🌌", P6) tab("CREDITS πŸ‚", P7) P1.Visible = true -- // TAB 1: TROLL βš” // local targetBox = Instance.new("TextBox", P1) targetBox.Size = UDim2.new(1, -10, 0, 32) targetBox.PlaceholderText = "[TARGET NAME]" targetBox.BackgroundColor3 = Color3.fromRGB(20,20,30) targetBox.TextColor3 = Color3.fromRGB(255,255,255) targetBox.PlaceholderColor3 = Color3.fromRGB(150,150,150) Instance.new("UICorner", targetBox) local function getT() local n = targetBox.Text:lower() if n == "" then return nil end for _,v in pairs(Players:GetPlayers()) do if v ~= player and (v.Name:lower():find(n) or v.DisplayName:lower():find(n)) then return v end end end _G.Loop = false btn("BANG πŸ”₯", P1, function() _G.Loop = true; local t = getT() while _G.Loop and t and player.Character and t.Character do RunService.Heartbeat:Wait(); player.Character.HumanoidRootPart.CFrame = t.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,1.2 + math.sin(tick()*25)*0.8) end end) btn("HEAD BANG πŸ’€", P1, function() _G.Loop = true; local t = getT() while _G.Loop and t and player.Character and t.Character do RunService.Heartbeat:Wait(); player.Character.HumanoidRootPart.CFrame = t.Character.Head.CFrame * CFrame.new(0,0,-0.8) * CFrame.Angles(0,math.pi,0) + t.Character.Head.CFrame.LookVector * math.sin(tick()*25)*0.6 end end) btn("SUCKER 🌚", P1, function() _G.Loop = true; local t = getT() while _G.Loop and t and player.Character and t.Character do RunService.Heartbeat:Wait(); player.Character.HumanoidRootPart.CFrame = t.Character.HumanoidRootPart.CFrame * CFrame.new(0, -0.9, -1) * CFrame.Angles(math.rad(85), 0, 0) + t.Character.HumanoidRootPart.CFrame.LookVector * math.sin(tick()*25)*0.8 end end) btn("FRONT HUMP πŸ‘½", P1, function() _G.Loop = true; local t = getT() while _G.Loop and t and player.Character and t.Character do RunService.Heartbeat:Wait(); player.Character.HumanoidRootPart.CFrame = t.Character.HumanoidRootPart.CFrame * CFrame.new(0, -0.6, -1.2) * CFrame.Angles(math.rad(40), math.pi, 0) + t.Character.HumanoidRootPart.CFrame.LookVector * math.sin(tick()*25)*0.8 end end) btn("HEADSIT βš”", P1, function() _G.Loop = true; local t = getT() while _G.Loop and t and player.Character and t.Character do RunService.Heartbeat:Wait(); player.Character.Humanoid.Sit = true; player.Character.HumanoidRootPart.CFrame = t.Character.Head.CFrame * CFrame.new(0,1,0) end end) btn("FRONT HEADSIT πŸ‘Ί", P1, function() _G.Loop = true; local t = getT() while _G.Loop and t and player.Character and t.Character do RunService.Heartbeat:Wait(); player.Character.Humanoid.Sit = true; player.Character.HumanoidRootPart.CFrame = t.Character.Head.CFrame * CFrame.new(0,0.5,-1) * CFrame.Angles(0,math.pi,0) end end) btn("SPECTATE πŸ‘€", P1, function() local t = getT() if t and t.Character then workspace.CurrentCamera.CameraSubject = t.Character.Humanoid end end) btn("TELEPORT TO 😼", P1, function() local t = getT() if t and t.Character then player.Character.HumanoidRootPart.CFrame = t.Character.HumanoidRootPart.CFrame end end) btn("ORBIT TARGET 🀯", P1, function() _G.Loop = true; local t = getT(); local a = 0 while _G.Loop and t and player.Character and t.Character do a = a + 0.03; player.Character.HumanoidRootPart.CFrame = t.Character.HumanoidRootPart.CFrame * CFrame.Angles(0,a,0) * CFrame.new(0,0,8); task.wait() end end) btn("ANNOY πŸ’¦", P1, function() _G.Loop = true; local t = getT() while _G.Loop and t and player.Character and t.Character do player.Character.HumanoidRootPart.CFrame = t.Character.HumanoidRootPart.CFrame * CFrame.new(math.random(-4,4),math.random(-2,4),math.random(-4,4)); task.wait() end end) btn("FLING πŸ’’", P1, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/0866/lua/main/Fling.lua"))() end) btn("STOP TROLL 🚫", P1, function() _G.Loop = false; if player.Character then player.Character.Humanoid.Sit = false; workspace.CurrentCamera.CameraSubject = player.Character.Humanoid end end) -- // TAB 2: SPAMMER πŸŒ€ // btn("πŸ’₯ ATUL SPAMMERπŸ”₯ (THE AURA MAN)", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/g21VtHuP"))() end) btn("πŸ’« CHRIZU SPAMMER ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/t043Lg4v"))() end) btn("🧿 NIYA SPAMMER ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/w0VU6qEe"))() end) btn("πŸ’₯ VARUN SPAMMERπŸ”₯ ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/vvXCh3Fj"))() end) btn("πŸ’« OM SPAMMER ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/w1PwrJ6w"))() end) btn("🧿 MINATO SPAMMER ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/KPkuT51E"))() end) btn("πŸ’₯ DEMON SPAMMERπŸ”₯ ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/mHhYPfQC"))() end) btn("πŸ’« CHIFUYU SPAMMERπŸ”₯ ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/4wGLf1U3"))() end) btn("🧿 PRINCE SPAMMER ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/QEDVqSwr"))() end) btn("πŸ’₯ AISH X ATUL SPAMMERπŸ”₯ ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/CrEFNL8X"))() end) btn("πŸ’« SPIDEY SPAMMERπŸ”₯ ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/8jttLJBN"))() end) btn("🧿 AYAN SPAMMER ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/xDknUGyC"))() end) btn("πŸ’₯ EGO VEGITA SPAMMERπŸ”₯ ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/GwEFec6q"))() end) btn("πŸ’« HRISHI SPAMMERπŸ”₯ ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/XSfNdmc0"))() end) btn("🧿 MANAV+ATUL SPAMMER ", P2, function() loadstring(game:HttpGet("https://pastebin.com/raw/Bt93606t"))() end) -- // TAB 3: ADMIN πŸ”₯ // btn("πŸ”³ ADMIN-1", P3, function() loadstring(game:HttpGet("https://pastebin.com/raw/iWUNfkKL"))() end) btn("πŸ”³ ADMIN-2", P3, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Veaquach/kruel/refs/heads/main/kruel%20obf.txt"))() end) btn("πŸ”³ ADMIN-3", P3, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/ltseverydayyou/Nameless-Admin/main/Source.lua"))() end) btn("πŸ”³ ONLY BANG ADMIN", P3, function() loadstring(game:HttpGet("https://pastebin.com/raw/3yxgP0V7"))() end) btn("πŸ”³ INFINITY YIELD", P3, function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end) -- // TAB 4: OTHER ☣ // _G.InfJump = false _G.Spd = false _G.Spin = false UserInputService.JumpRequest:Connect(function() if _G.InfJump and player.Character and player.Character:FindFirstChildOfClass("Humanoid") then player.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping") end end) RunService.Heartbeat:Connect(function() if _G.Spin and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(20), 0) end end) btn("🎭 EMOTE", P4, function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-7yd7-I-Emote-Script-48024"))() end) btn("πŸš€ INF JUMP: OFF", P4, function(self) _G.InfJump = not _G.InfJump; self.Text = "πŸš€ INF JUMP: " .. (_G.InfJump and "ON" or "OFF") end) btn("πŸƒβ€β™‚οΈ SPEED 300", P4, function(s) _G.Spd = not _G.Spd; if player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.WalkSpeed = _G.Spd and 300 or 16 end end) btn("πŸŒ€ SPIN 300", P4, function(s) _G.Spin = not _G.Spin; s.Text = "πŸŒ€ SPIN 300: " .. (_G.Spin and "ON" or "OFF") end) btn("πŸ’ƒ COPY EMOTE AND MORE", P4, function( ) loadstring(game:HttpGet("https://rawscripts.net/raw/Ro-vibes-ROVibes-95220"))() end) btn("πŸͺ“ SKY DESTROYER", P4, function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-sky-destroyer-V2-AXEZZ-110640"))() end) btn("πŸ§β€β™‚οΈ STAND BY", P4, function() loadstring(game:HttpGet("https://pastebin.com/raw/10c0XURE"))() end) btn("🎈 HEADSTAND", P4, function() loadstring(game:HttpGet("https://pastebin.com/raw/1zxuPzS4"))() end) -- // TAB 5: SHIELD πŸ€– // _G.AntiVoid = false _G.AntiSit = false RunService.Heartbeat:Connect(function() if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then if _G.AntiVoid and player.Character.HumanoidRootPart.Position.Y < -50 then player.Character.HumanoidRootPart.Velocity = Vector3.new(0,0,0) player.Character.HumanoidRootPart.CFrame = CFrame.new(0, 20, 0) end if _G.AntiSit and player.Character:FindFirstChildOfClass("Humanoid") then player.Character:FindFirstChildOfClass("Humanoid").Sit = false end end end) btn(" πŸ‘‘ ANTIVOID (GOD MODE)", P5, function(s) _G.AntiVoid = not _G.AntiVoid s.Text = "πŸ‘‘ ANTI-VOID: "..(_G.AntiVoid and "ON" or "OFF") end) btn("πŸ”„ REVERSE FLING", P5, function() if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then local hrp = player.Character.HumanoidRootPart; local s = Instance.new("BodyAngularVelocity", hrp); s.MaxTorque = Vector3.new(math.huge,math.huge,math.huge); s.AngularVelocity = Vector3.new(0,999999,0) end end) btn("πŸ”₯ ANTI-FLING", P5, function() RunService.Stepped:Connect(function() if player.Character then for _,v in pairs(player.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) end) btn("🚫 ANTI-SIT", P5, function(s) _G.AntiSit = not _G.AntiSit s.Text = "πŸͺ‘ ANTI-SIT: "..(_G.AntiSit and "ON" or "OFF") end) btn("😴 ANTI-AFK", P5, function() player.Idled:Connect(function() game:GetService("VirtualUser"):Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame) task.wait(1) end) end) btn(" πŸ‘‘ ANTIVOID (GOD MODE)", P5, function(s) _G.AntiVoid = not _G.AntiVoid s.Text = "πŸ‘‘ ANTI-VOID: "..(_G.AntiVoid and "ON" or "OFF") end) btn("πŸ”„ REVERSE FLING", P5, function() if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then local hrp = player.Character.HumanoidRootPart; local s = Instance.new("BodyAngularVelocity", hrp); s.MaxTorque = Vector3.new(math.huge,math.huge,math.huge); s.AngularVelocity = Vector3.new(0,999999,0) end end) btn("πŸ”₯ ANTI-FLING", P5, function() RunService.Stepped:Connect(function() if player.Character then for _,v in pairs(player.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) end) btn("🚫 ANTI-SIT", P5, function(s) _G.AntiSit = not _G.AntiSit s.Text = "πŸͺ‘ ANTI-SIT: "..(_G.AntiSit and "ON" or "OFF") end) btn("😴 ANTI-AFK", P5, function() player.Idled:Connect(function() game:GetService("VirtualUser"):Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame) task.wait(1) end) end) -- // TAB 6: FAKEOUT ☣ // btn("πŸͺ TELEPORTER", P6, function() local msg = "TELEPORTER BY ATULπŸ”₯ _______________________________________________________________________________________________________________ATUL TELEPORTER Loaded..." local chatService = game:GetService("TextChatService") if chatService.ChatVersion == Enum.ChatVersion.TextChatService then chatService.TextChannels.RBXGeneral:SendAsync(msg) else game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All") end loadstring(game:HttpGet("https://pastebin.com/raw/EUSknnAF"))() end) btn("βš“ TELEPORTER + VOID", P6, function() local msg = "TELEPORTER BY ATUL πŸ±β€πŸ‘€_______________________________________________________________________________________________________________ATUL TELEPORTER Loaded..." local chatService = game:GetService("TextChatService") if chatService.ChatVersion == Enum.ChatVersion.TextChatService then chatService.TextChannels.RBXGeneral:SendAsync(msg) else game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All") end loadstring(game:HttpGet("https://pastebin.com/raw/8r5QLhMF"))() end) btn("⚑ ANTIBANG", P6, function() local msg = "ANTIBANG BY ATUL πŸ’ͺ_______________________________________________________________________________________________________________________________ATUL ANTIBANG Loaded..." local chatService = game:GetService("TextChatService") if chatService.ChatVersion == Enum.ChatVersion.TextChatService then chatService.TextChannels.RBXGeneral:SendAsync(msg) else game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All") end loadstring(game:HttpGet("https://pastebin.com/raw/c3R861CE"))() end) btn("πŸŒͺ️ AUTO FAKEOUT (UNLIMITED)", P6, function() local msg = "FAKEOUT BY ATUL πŸ’€ πŸ”₯____________________________________________________________________________________________________________________________________ATUL FAKEOUT Loaded..." local chatService = game:GetService("TextChatService") if chatService.ChatVersion == Enum.ChatVersion.TextChatService then chatService.TextChannels.RBXGeneral:SendAsync(msg) else game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All") end loadstring(game:HttpGet("https://pastebin.com/raw/CbcaHGzN"))() end) -- // TAB 7: CREDIT πŸ‘‘ // local info7 = Instance.new("TextLabel", P7) info7.Size = UDim2.new(1,-5,1,0); info7.BackgroundTransparency = 1; info7.TextColor3 = Color3.fromRGB(255,255,255); info7.TextSize = 16; info7.Font = Enum.Font.GothamBold; info7.TextWrapped = true; info7.TextYAlignment = "Top" info7.Text = [[πŸ‘‘ OWNER - Atul 🌐 INSTAGRAM ID - ff_player1109 πŸ”₯ ADMINS AND SPAM TO DESTROY ANYONE πŸ”₯ γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€°γ€° πŸ’  ROBLOX USERNAME- ff_player1109 πŸ’  SCRIPT WITH UNBELIEVABLE FEATURES β™  πŸ›‘ NOTE- ADMINS TAKE SOME TIME TO LOAD, SO WAIT FOR A MOMENT AFTER CLICKING ON ANY ADMIN]]