-- Roblox Delta Exploit Compatible Advanced TP Script (PRO COMMAND PANEL) local CoreGui = game:GetService("CoreGui") local Players = game:GetService("Players") local RunService = game:GetService("RunService") local LocalPlayer = Players.LocalPlayer -- Var olan menü varsa temizle if CoreGui:FindFirstChild("TPPlayerCommandGui") then CoreGui.TPPlayerCommandGui:Destroy() end -- GUI Oluşturma local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "TPPlayerCommandGui" ScreenGui.Parent = CoreGui -- Minecraft Tarzı Bildirim Alanı local NotifFrame = Instance.new("Frame") NotifFrame.Name = "NotificationFrame" NotifFrame.Size = UDim2.new(0, 280, 0, 36) NotifFrame.Position = UDim2.new(0.5, -140, 0.15, 0) NotifFrame.BackgroundTransparency = 1 NotifFrame.Visible = false NotifFrame.ZIndex = 10 NotifFrame.Parent = ScreenGui local NotifText = Instance.new("TextLabel") NotifText.Size = UDim2.new(1, 0, 1, 0) NotifText.BackgroundTransparency = 1 NotifText.Text = "OYUNCUYA IŞINLANILDI" NotifText.TextColor3 = Color3.fromRGB(255, 255, 255) NotifText.TextStrokeColor3 = Color3.fromRGB(0, 0, 0) NotifText.TextStrokeTransparency = 0 NotifText.TextSize = 16 NotifText.Font = Enum.Font.Arcade NotifText.ZIndex = 11 NotifText.Parent = NotifFrame local function showNotification() NotifFrame.Visible = true task.delay(1.4, function() NotifFrame.Visible = false end) end -- Ana Çerçeve (Daha kompakt ve profesyonel boyut) local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 200, 0, 275) MainFrame.Position = UDim2.new(0.5, -100, 0.5, -137) MainFrame.BackgroundColor3 = Color3.fromRGB(8, 14, 8) MainFrame.BackgroundTransparency = 0.05 MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui local MainCorner = Instance.new("UICorner") MainCorner.CornerRadius = UDim.new(0, 10) MainCorner.Parent = MainFrame -- RGB Kenar Barı (UIStroke) local MainStroke = Instance.new("UIStroke") MainStroke.Thickness = 1.5 MainStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border MainStroke.Parent = MainFrame -- Limon Decal Arka Plan (Daha hafif şeffaflık) local LemonBackground = Instance.new("ImageLabel") LemonBackground.Name = "LemonDecal" LemonBackground.Size = UDim2.new(1, 0, 1, 0) LemonBackground.BackgroundTransparency = 1 LemonBackground.Image = "rbxassetid://6023426915" LemonBackground.ImageTransparency = 0.9 LemonBackground.ZIndex = 0 LemonBackground.Parent = MainFrame -- Üst Bar (Başlık ve Kapatma Butonu Konteyneri) local TopBar = Instance.new("Frame") TopBar.Size = UDim2.new(1, 0, 0, 28) TopBar.BackgroundTransparency = 1 TopBar.ZIndex = 2 TopBar.Parent = MainFrame local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, -30, 1, 0) Title.Position = UDim2.new(0, 10, 0, 0) Title.BackgroundTransparency = 1 Title.Text = "TP PLAYER COMMAND" Title.TextColor3 = Color3.fromRGB(60, 255, 60) Title.TextSize = 10 Title.Font = Enum.Font.GothamBold Title.TextXAlignment = Enum.TextXAlignment.Left Title.ZIndex = 2 Title.Parent = TopBar local CloseButton = Instance.new("TextButton") CloseButton.Size = UDim2.new(0, 18, 0, 18) CloseButton.Position = UDim2.new(1, -22, 0.5, -9) CloseButton.BackgroundColor3 = Color3.fromRGB(180, 30, 30) CloseButton.BorderSizePixel = 0 CloseButton.Text = "X" CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255) CloseButton.TextSize = 10 CloseButton.Font = Enum.Font.GothamBold CloseButton.ZIndex = 2 CloseButton.Parent = TopBar local CloseCorner = Instance.new("UICorner") CloseCorner.CornerRadius = UDim.new(0, 4) CloseCorner.Parent = CloseButton CloseButton.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) -- Kaydırılabilir Oyuncu Listesi local ScrollList = Instance.new("ScrollingFrame") ScrollList.Size = UDim2.new(1, -14, 1, -78) ScrollList.Position = UDim2.new(0, 7, 0, 28) ScrollList.BackgroundTransparency = 0.6 ScrollList.BackgroundColor3 = Color3.fromRGB(4, 10, 4) ScrollList.BorderSizePixel = 0 ScrollList.ScrollBarThickness = 2 ScrollList.ScrollBarImageColor3 = Color3.fromRGB(60, 255, 60) ScrollList.ZIndex = 2 ScrollList.Parent = MainFrame local ScrollCorner = Instance.new("UICorner") ScrollCorner.CornerRadius = UDim.new(0, 6) ScrollCorner.Parent = ScrollList local UIListLayout = Instance.new("UIListLayout") UIListLayout.Parent = ScrollList UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout.Padding = UDim.new(0, 4) -- Alt Manuel Işınlanma Alanı (Modern Komut Satırı) local BottomFrame = Instance.new("Frame") BottomFrame.Size = UDim2.new(1, -14, 0, 40) BottomFrame.Position = UDim2.new(0, 7, 1, -45) BottomFrame.BackgroundColor3 = Color3.fromRGB(6, 15, 6) BottomFrame.BorderSizePixel = 0 BottomFrame.ZIndex = 2 BottomFrame.Parent = MainFrame local BottomCorner = Instance.new("UICorner") BottomCorner.CornerRadius = UDim.new(0, 6) BottomCorner.Parent = BottomFrame local NameTextBox = Instance.new("TextBox") NameTextBox.Size = UDim2.new(1, -6, 0, 18) NameTextBox.Position = UDim2.new(0, 3, 0, 2) NameTextBox.BackgroundColor3 = Color3.fromRGB(12, 25, 12) NameTextBox.BorderSizePixel = 0 NameTextBox.PlaceholderText = "Oyuncu Ara / Yaz..." NameTextBox.PlaceholderColor3 = Color3.fromRGB(100, 140, 100) NameTextBox.Text = "" NameTextBox.TextColor3 = Color3.fromRGB(255, 255, 255) NameTextBox.TextSize = 9 NameTextBox.Font = Enum.Font.Gotham NameTextBox.ZIndex = 3 NameTextBox.Parent = BottomFrame local TextCorner = Instance.new("UICorner") TextCorner.CornerRadius = UDim.new(0, 4) TextCorner.Parent = NameTextBox local CustomTPBtn = Instance.new("TextButton") CustomTPBtn.Size = UDim2.new(1, -6, 0, 15) CustomTPBtn.Position = UDim2.new(0, 3, 0, 22) CustomTPBtn.BackgroundColor3 = Color3.fromRGB(15, 45, 15) CustomTPBtn.BorderSizePixel = 0 CustomTPBtn.Text = "İSME IŞINLAN" CustomTPBtn.TextColor3 = Color3.fromRGB(80, 255, 80) CustomTPBtn.TextSize = 9 CustomTPBtn.Font = Enum.Font.GothamBold CustomTPBtn.ZIndex = 3 CustomTPBtn.Parent = BottomFrame local BtnCorner = Instance.new("UICorner") BtnCorner.CornerRadius = UDim.new(0, 4) BtnCorner.Parent = CustomTPBtn local rgbStrokes = {} -- RGB Döngüsü local hue = 0 RunService.RenderStepped:Connect(function() hue = (hue + 0.004) % 1 local rgbColor = Color3.fromHSV(hue, 1, 1) MainStroke.Color = rgbColor for _, stroke in ipairs(rgbStrokes) do if stroke and stroke.Parent then stroke.Color = rgbColor end end end) -- Işınlanma Fonksiyonu local function teleportTo(targetPlayer) if targetPlayer and targetPlayer.Character and targetPlayer.Character:FindFirstChild("HumanoidRootPart") then if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.CFrame = targetPlayer.Character.HumanoidRootPart.CFrame showNotification() end end end -- İsimle Arayarak Işınlanma CustomTPBtn.MouseButton1Click:Connect(function() local text = string.lower(NameTextBox.Text) if text ~= "" then for _, plr in ipairs(Players:GetPlayers()) do if plr ~= LocalPlayer then if string.find(string.lower(plr.Name), text) or string.find(string.lower(plr.DisplayName), text) then teleportTo(plr) break end end end end end) -- Oyuncu Listesini Güncelleme local function updatePlayerList() rgbStrokes = {} for _, child in ipairs(ScrollList:GetChildren()) do if child:IsA("Frame") then child:Destroy() end end for _, player in ipairs(Players:GetPlayers()) do if player ~= LocalPlayer then local ItemFrame = Instance.new("Frame") ItemFrame.Size = UDim2.new(1, -4, 0, 26) ItemFrame.BackgroundColor3 = Color3.fromRGB(12, 28, 12) ItemFrame.BorderSizePixel = 0 ItemFrame.ZIndex = 2 ItemFrame.Parent = ScrollList local ItemCorner = Instance.new("UICorner") ItemCorner.CornerRadius = UDim.new(0, 4) ItemCorner.Parent = ItemFrame local ItemStroke = Instance.new("UIStroke") ItemStroke.Thickness = 0.8 ItemStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border ItemStroke.Parent = ItemFrame table.insert(rgbStrokes, ItemStroke) local AvatarImage = Instance.new("ImageLabel") AvatarImage.Size = UDim2.new(0, 20, 0, 20) AvatarImage.Position = UDim2.new(0, 3, 0, 3) AvatarImage.BackgroundColor3 = Color3.fromRGB(5, 12, 5) AvatarImage.BorderSizePixel = 0 AvatarImage.Image = "rbxthumb://type=AvatarHeadShot&id=" .. player.UserId .. "&w=150&h=150" AvatarImage.ZIndex = 2 AvatarImage.Parent = ItemFrame local AvatarCorner = Instance.new("UICorner") AvatarCorner.CornerRadius = UDim.new(0, 3) AvatarCorner.Parent = AvatarImage local Btn = Instance.new("TextButton") Btn.Size = UDim2.new(1, -26, 1, 0) Btn.Position = UDim2.new(0, 26, 0, 0) Btn.BackgroundTransparency = 1 Btn.Text = player.DisplayName .. " (@" .. player.Name .. ")" Btn.TextColor3 = Color3.fromRGB(190, 255, 190) Btn.TextSize = 9 Btn.Font = Enum.Font.GothamBold Btn.TextXAlignment = Enum.TextXAlignment.Left Btn.ZIndex = 2 Btn.Parent = ItemFrame Btn.MouseButton1Click:Connect(function() teleportTo(player) end) end end ScrollList.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y) end Players.PlayerAdded:Connect(updatePlayerList) Players.PlayerRemoving:Connect(updatePlayerList) updatePlayerList()