local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = " ADAM KRAL TA SCRİPT BY Aİ V.03 Aİ", LoadingTitle = "L7NON TA SCRİPT", LoadingSubtitle = "MEME PİPİ KUKU YARRAM ALSANA YAVRUM HİLE HİLE .D", ConfigurationSaving = {Enabled = false}, Discord = {Enabled = false}, KeySystem = false }) -- 1. Sekme: Troll Menü |😂 local TrollMenu = Window:CreateTab("Troll Menü |😂", 4483362458) TrollMenu:CreateButton({ Name = "Araba sürme", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/7dksbpxuw8/TA/refs/heads/main/SpyTA"))() end }) TrollMenu:CreateButton({ Name = "Herkesin Op Görme", Callback = function() local Players = game:GetService("Players") for _, plr in pairs(Players:GetPlayers()) do if plr.Character and plr.Character:FindFirstChild("Head") then -- Önce varsa önceki BillboardGui'yi kaldır local existingBillboard = plr.Character.Head:FindFirstChild("OpBillboardGui") if existingBillboard then existingBillboard:Destroy() end -- Metin alma local textToShow = "" local market = plr:FindFirstChild("PlayerGui") and plr.PlayerGui:FindFirstChild("Frames") and plr.PlayerGui.Frames:FindFirstChild("Market") if market and market:FindFirstChild("Onur") and market.Onur:IsA("TextLabel") then textToShow = market.Onur.Text end if textToShow ~= "" then local billboardGui = Instance.new("BillboardGui") billboardGui.Name = "OpBillboardGui" billboardGui.Adornee = plr.Character.Head billboardGui.Size = UDim2.new(0, 200, 0, 50) billboardGui.StudsOffset = Vector3.new(0, 2, 0) billboardGui.AlwaysOnTop = true billboardGui.Parent = plr.Character.Head local textLabel = Instance.new("TextLabel", billboardGui) textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.BackgroundTransparency = 1 textLabel.TextColor3 = Color3.new(1, 1, 0) textLabel.TextStrokeColor3 = Color3.new(0, 0, 0) textLabel.TextStrokeTransparency = 0 textLabel.Font = Enum.Font.SourceSansBold textLabel.TextSize = 20 textLabel.Text = textToShow textLabel.TextWrapped = true end end end end }) -- 2. Sekme: FAKE| CLİENT local FakeClient = Window:CreateTab("FAKE| CLİENT", 6740205803) -- Yazı yazma yeri local inputText = "" FakeClient:CreateInput({ Name = "Yazı Yazma Yeri", PlaceholderText = "Buraya yaz, model TextLabel olarak gösterilecek", RemoveTextAfterFocusLost = false, Callback = function(text) inputText = text local player = game.Players.LocalPlayer local frames = player.PlayerGui:FindFirstChild("Frames") if frames then local market = frames:FindFirstChild("Market") if market then local onur = market:FindFirstChild("Onur") if onur and onur:IsA("TextLabel") then onur.Text = text end end end end, }) FakeClient:CreateButton({ Name = "OP KAZANMA .D", Callback = function() local player = game.Players.LocalPlayer local frames = player.PlayerGui:FindFirstChild("Frames") if frames then local market = frames:FindFirstChild("Market") if market then local onur = market:FindFirstChild("Onur") if onur and onur:IsA("TextLabel") then onur.Text = inputText ~= "" and inputText or "OP KAZANMA .D Aktif!" end end end end, }) -- Executor Premium? Butonu FakeClient:CreateButton({ Name = "Executor Premium?", Callback = function() if game.CoreGui:FindFirstChild("TAExecutorGUI") then game.CoreGui.TAExecutorGUI:Destroy() end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "TAExecutorGUI" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = game.CoreGui local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 500, 0, 350) Frame.Position = UDim2.new(0.5, -250, 0.5, -175) Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Frame.BorderSizePixel = 0 Frame.Parent = ScreenGui Frame.Active = true Frame.Draggable = true local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 40) Title.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Title.TextColor3 = Color3.new(1,1,1) Title.Font = Enum.Font.SourceSansBold Title.TextSize = 24 Title.Text = "TA EXECUTOR.D" Title.Parent = Frame local ImageLabel = Instance.new("ImageLabel") ImageLabel.Size = UDim2.new(0, 100, 0, 100) ImageLabel.Position = UDim2.new(1, -110, 0, 50) ImageLabel.BackgroundTransparency = 1 ImageLabel.Image = "rbxassetid://6740205803" ImageLabel.Parent = Frame local ScriptBox = Instance.new("TextBox") ScriptBox.Size = UDim2.new(1, -20, 0, 200) ScriptBox.Position = UDim2.new(0, 10, 0, 50) ScriptBox.ClearTextOnFocus = false ScriptBox.TextWrapped = true ScriptBox.TextXAlignment = Enum.TextXAlignment.Left ScriptBox.TextYAlignment = Enum.TextYAlignment.Top ScriptBox.Font = Enum.Font.Code ScriptBox.TextSize = 18 ScriptBox.MultiLine = true ScriptBox.PlaceholderText = "Scriptini buraya yaz..." ScriptBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40) ScriptBox.TextColor3 = Color3.new(1,1,1) ScriptBox.Parent = Frame local ExecuteBtn = Instance.new("TextButton") ExecuteBtn.Size = UDim2.new(0, 100, 0, 35) ExecuteBtn.Position = UDim2.new(0, 10, 1, -45) ExecuteBtn.BackgroundColor3 = Color3.fromRGB(70, 130, 180) ExecuteBtn.TextColor3 = Color3.new(1,1,1) ExecuteBtn.Font = Enum.Font.SourceSansBold ExecuteBtn.TextSize = 20 ExecuteBtn.Text = "Çalıştır" ExecuteBtn.Parent = Frame ExecuteBtn.MouseButton1Click:Connect(function() local scriptCode = ScriptBox.Text if scriptCode and scriptCode ~= "" then local func, err = loadstring(scriptCode) if func then local success, err2 = pcall(func) if not success then warn("Script çalıştırma hatası: "..err2) end else warn("Script yükleme hatası: "..err) end end end) local ClearBtn = Instance.new("TextButton") ClearBtn.Size = UDim2.new(0, 100, 0, 35) ClearBtn.Position = UDim2.new(0, 120, 1, -45) ClearBtn.BackgroundColor3 = Color3.fromRGB(180, 70, 70) ClearBtn.TextColor3 = Color3.new(1,1,1) ClearBtn.Font = Enum.Font.SourceSansBold ClearBtn.TextSize = 20 ClearBtn.Text = "Temizle" ClearBtn.Parent = Frame ClearBtn.MouseButton1Click:Connect(function() ScriptBox.Text = "" end) end, })