local ScreenGui = Instance.new("ScreenGui") local Main = Instance.new("Frame") local UICorner = Instance.new("UICorner") local Title = Instance.new("TextLabel") -- GUI Ayarları ScreenGui.Name = "SytexGUI" ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false Main.Name = "Main" Main.Parent = ScreenGui Main.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Main.Size = UDim2.new(0, 450, 0, 300) Main.Position = UDim2.new(0.3, 0, 0.3, 0) Main.Active = true Main.Draggable = false -- Elle yapıyoruz UICorner.Parent = Main Title.Name = "Title" Title.Parent = Main Title.BackgroundTransparency = 1 Title.Size = UDim2.new(1, 0, 0, 50) Title.Font = Enum.Font.GothamBold Title.Text = "Sytex Türk Sohbet [SCRİPT V2]" Title.TextColor3 = Color3.fromRGB(255, 0, 0) Title.TextScaled = true -- Mobil + PC Uyumlu Sürükleyici local dragging = false local dragInput, dragStart, startPos Main.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = Main.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) Main.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) game:GetService("UserInputService").InputChanged:Connect(function(input) if input == dragInput and dragging then local delta = input.Position - dragStart Main.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end)-- DEVAM: Sürüklenebilir GUI içine butonlar ekleniyor for i, buttonData in ipairs({ {Text = "LEVEL SPAM [🔥]", Action = function() while wait(0.1) do game:GetService("ReplicatedStorage").HideLevel:FireServer() end end}, {Text = "RUTBE SPAM [🔥]", Action = function() while wait(0.1) do game:GetService("ReplicatedStorage").HideRutbe:FireServer() end end}, {Text = "CİHAZ SPAM [🔥]", Action = function() while wait(0.1) do game:GetService("ReplicatedStorage").HideDevice:FireServer() end end}, {Text = "UYARI VER [ADMİN 🔥]", Action = function() game:GetService("ReplicatedStorage").HDAdminClient.Signals.ExecuteAlert:InvokeServer() end}, {Text = "YAYIN GÖNDER [ADMİN 🔥]", Action = function() game:GetService("ReplicatedStorage").HDAdminClient.Signals.ExecuteBroadcast:InvokeServer() end}, {Text = "ANKET SIFIRLA [🔥]", Action = function() game:GetService("ReplicatedStorage").HDAdminClient.Signals.ExecutePoll:InvokeServer() end}, {Text = "SORU SOR [TÜRKÇE 🇹🇷]", Action = function() print("Soru tool menüsü açıldı!") -- Gerçek menüyü sonra detaylı ekleyeceğim end}, {Text = "MONEY [💸]", Action = function() local args = {[1] = 1} game:GetService("ReplicatedStorage").Events.WALLET_EVENT:FireServer(unpack(args)) local player = game.Players.LocalPlayer local target = game.Players:GetPlayers()[math.random(1, #game.Players:GetPlayers())] if target ~= player then player.Character:MoveTo(target.Character.HumanoidRootPart.Position) game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Sadakam olsun 🥱", "All") end end}, {Text = "CHAR ME MENÜ [🤪]", Action = function() local charMenu = Instance.new("Frame", ScreenGui) charMenu.BackgroundColor3 = Color3.fromRGB(50, 50, 50) charMenu.Size = UDim2.new(0, 300, 0, 200) charMenu.Position = UDim2.new(0.4, 0, 0.4, 0) charMenu.Active = true local textList = { "1 - RealDalllll", "2 - wq_enesfb", "3 - mertmert_4535", "4 - arsinlys1" } for i, txt in ipairs(textList) do local label = Instance.new("TextLabel", charMenu) label.Text = txt label.TextColor3 = Color3.fromRGB(255,255,255) label.BackgroundTransparency = 1 label.Position = UDim2.new(0, 10, 0, 20 * i) label.Size = UDim2.new(1, -20, 0, 20) label.TextXAlignment = Enum.TextXAlignment.Left end -- Sürükleyici ekle makeDraggable(charMenu) end} }) do local btn = Instance.new("TextButton", Main) btn.Size = UDim2.new(0, 420, 0, 30) btn.Position = UDim2.new(0, 15, 0, 50 + ((i - 1) * 35)) btn.BackgroundColor3 = Color3.fromRGB(60, 60, 60) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.GothamBold btn.TextSize = 14 btn.Text = buttonData.Text btn.MouseButton1Click:Connect(function() pcall(buttonData.Action) end) end