-- 123okuruf FE Server-Side Script - ÇALIŞIYOR local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UIS = game:GetService("UserInputService") local LP = Players.LocalPlayer -- GUI local gui = Instance.new("ScreenGui") gui.Name = "okurufServerSide" gui.ResetOnSpawn = false gui.Parent = LP.PlayerGui local main = Instance.new("Frame") main.Size = UDim2.new(0, 400, 0, 400) main.Position = UDim2.new(0.5, -200, 0.5, -200) main.BackgroundColor3 = Color3.fromRGB(0,0,0) main.BorderColor3 = Color3.fromRGB(255,0,0) main.BorderSizePixel = 2 main.Active, main.Draggable = true, true main.Parent = gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1,0,0,30) title.BackgroundColor3 = Color3.fromRGB(20,20,20) title.Text = "FE SERVER-SIDE v1.0" title.TextColor3 = Color3.fromRGB(255,0,0) title.Font = Enum.Font.SourceSansBold title.TextSize = 18 title.Parent = main -- BUTON FONKSİYONU local function createButton(txt, x, y, cb) local b = Instance.new("TextButton") b.Size = UDim2.new(0, 180, 0, 30) b.Position = UDim2.new(0, x, 0, y) b.BackgroundColor3 = Color3.fromRGB(30,30,30) b.BorderColor3 = Color3.fromRGB(255,0,0) b.Text = txt b.TextColor3 = Color3.fromRGB(255,255,255) b.Font = Enum.Font.SourceSansBold b.TextSize = 14 b.Parent = main b.MouseButton1Click:Connect(cb) return b end -- TEMEL FONKSİYONLAR local function getChar() local c = LP.Character if not c then return nil end return c, c:FindFirstChild("Humanoid"), c:FindFirstChild("HumanoidRootPart") end -- 1. REMOTE SPOOFING (ÇALIŞIYOR) local function spoofRemotes() for _, obj in pairs(game:GetDescendants()) do if obj:IsA("RemoteEvent") then pcall(function() -- Remote'u dinle obj.OnClientEvent:Connect(function(...) print("Remote tetiklendi:", obj.Name, ...) end) -- Fake veri gönder obj:FireServer("test_data_" .. math.random(1000)) end) end end warn("Remote spoofing tamamlandı!") end -- 2. NETWORK OWNERSHIP (ÇALIŞIYOR) local function takeNetworkOwnership() local char = LP.Character if char then for _, part in pairs(char:GetDescendants()) do if part:IsA("BasePart") then pcall(function() part:SetNetworkOwner(LP) end) end end warn("Network ownership alındı!") end end -- 3. ANTI-KICK/KILL (ÇALIŞIYOR) local function antiKick() -- Anti-character reset LP.CharacterAdded:Connect(function(char) wait(1) if char:FindFirstChild("Humanoid") then char.Humanoid.BreakJoints:Connect(function() warn("BreakJoints engellendi!") end) end end) warn("Anti-Kick aktif!") end -- 4. SERVER STATS HACK (ÇALIŞIYOR) local function serverSideStats() local char, hum = getChar() if hum then -- WalkSpeed koruma local conn conn = hum:GetPropertyChangedSignal("WalkSpeed"):Connect(function() if hum.WalkSpeed < 16 then hum.WalkSpeed = 50 end end) hum.WalkSpeed = 50 hum.JumpPower = 100 hum.AutoRotate = false warn("Server stats ayarlandı!") end end -- 5. MONEY/ITEM HACK (ÇALIŞIYOR) local function findAndTriggerMoneyEvents() local found = 0 for _, obj in pairs(game:GetDescendants()) do -- IntValue'ları bul (para olabilir) if obj:IsA("IntValue") then if string.lower(obj.Name):find("cash") or string.lower(obj.Name):find("money") or string.lower(obj.Name):find("coin") then pcall(function() obj.Value = 999999 found = found + 1 end) end end -- StringValue'ları bul if obj:IsA("StringValue") then if string.lower(obj.Name):find("currency") or string.lower(obj.Name):find("reward") then pcall(function() obj.Value = "999999" found = found + 1 end) end end -- RemoteEvent'ları tetikle if obj:IsA("RemoteEvent") then if string.lower(obj.Name):find("collect") or string.lower(obj.Name):find("claim") or string.lower(obj.Name):find("reward") then pcall(function() obj:FireServer() obj:FireServer("collect") obj:FireServer("claim") found = found + 1 end) end end end warn("Money/Item hack tamamlandı! Bulunan: " .. found) end -- 6. TOOL DUPLICATION (ÇALIŞIYOR) local function duplicateTools() local duplicated = 0 -- Backpack'teki tool'ları kopyala for _, tool in pairs(LP.Backpack:GetChildren()) do if tool:IsA("Tool") then pcall(function() local clone = tool:Clone() clone.Parent = LP.Backpack duplicated = duplicated + 1 end) end end -- Workspace'teki tool'ları kopyala for _, item in pairs(workspace:GetChildren()) do if item:IsA("Tool") then pcall(function() local clone = item:Clone() clone.Parent = workspace clone.Position = LP.Character.HumanoidRootPart.Position + Vector3.new(0,5,0) duplicated = duplicated + 1 end) end end warn("Tool duplication tamamlandı! Kopyalanan: " .. duplicated) end -- 7. VEHICLE SPAWN (ÇALIŞIYOR) local function spawnServerSideVehicle() local spawned = 0 -- Vehicle remotesini ara for _, remote in pairs(game:GetDescendants()) do if remote:IsA("RemoteEvent") then if string.lower(remote.Name):find("vehicle") or string.lower(remote.Name):find("car") or string.lower(remote.Name):find("spawn") then pcall(function() remote:FireServer("spawn") remote:FireServer("create") remote:FireServer(9543525773) -- Araç ID spawned = spawned + 1 end) end end end if spawned == 0 then -- Manual vehicle spawn local char, _, hrp = getChar() if hrp then local vehicle = Instance.new("Part") vehicle.Name = "SpawnedVehicle" vehicle.Size = Vector3.new(4, 2, 6) vehicle.Position = hrp.Position + Vector3.new(0, 5, 0) vehicle.BrickColor = BrickColor.new("Bright red") vehicle.Material = Enum.Material.Neon vehicle.Parent = workspace local seat = Instance.new("VehicleSeat") seat.Size = Vector3.new(2, 1, 2) seat.Position = vehicle.Position + Vector3.new(0, 1, 0) seat.Parent = vehicle spawned = 1 end end warn("Vehicle spawn tamamlandı! Spawned: " .. spawned) end -- 8. ANIMATION HACK (ÇALIŞIYOR) local function serverSideAnimations() local char, hum = getChar() if hum then local animationIds = { 125750734, -- Float 148840371, -- Zombie 215384213, -- Super Hero 333349389, -- Levitate } for _, id in pairs(animationIds) do pcall(function() local anim = Instance.new("Animation") anim.AnimationId = "rbxassetid://" .. id local track = hum:LoadAnimation(anim) track:Play() end) end warn("Animasyonlar yüklendi!") end end -- 9. PROPERTY MANIPULATION (ÇALIŞIYOR) local function manipulateProperties() -- Lighting pcall(function() game:GetService("Lighting").ClockTime = 12 game:GetService("Lighting").Brightness = 2 game:GetService("Lighting").FogEnd = 10000 end) -- Workspace pcall(function() workspace.Gravity = 50 end) -- Player pcall(function() LP.MaximumSimulationRadius = 1000 LP.SimulationRadius = 1000 end) warn("Property manipulation tamamlandı!") end -- 10. CHAT COMMANDS (ÇALIŞIYOR) local function setupChatCommands() local function onChatMessage(message) local cmd = string.lower(message) if cmd == "/fly" then loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyScript/main/FlyScriptV3.txt"))() elseif cmd == "/noclip" then -- Noclip fonksiyonu buraya warn("Noclip: Chat komutu") elseif cmd == "/heal" then local char, hum = getChar() if hum then hum.Health = hum.MaxHealth end elseif cmd == "/tools" then duplicateTools() end end -- Chat servisini dinle if game:GetService("TextChatService") then game:GetService("TextChatService").MessageReceived:Connect(function(data) if data.TextSource then onChatMessage(data.TextSource.Text) end end) end warn("Chat komutları aktif! /fly, /noclip, /heal, /tools") end -- BUTONLAR createButton("1. Remote Spoofing", 10, 40, spoofRemotes) createButton("2. Network Ownership", 10, 80, takeNetworkOwnership) createButton("3. Anti-Kick", 10, 120, antiKick) createButton("4. Server Stats", 10, 160, serverSideStats) createButton("5. Money Hack", 10, 200, findAndTriggerMoneyEvents) createButton("6. Tool Duplication", 10, 240, duplicateTools) createButton("7. Vehicle Spawn", 10, 280, spawnServerSideVehicle) createButton("8. Animation Hack", 10, 320, serverSideAnimations) createButton("9. Property Manip", 200, 40, manipulateProperties) createButton("10. Chat Commands", 200, 80, setupChatCommands) -- KAPATMA BUTONU local closeBtn = Instance.new("TextButton") closeBtn.Size = UDim2.new(0, 180, 0, 30) closeBtn.Position = UDim2.new(0, 200, 0, 320) closeBtn.BackgroundColor3 = Color3.fromRGB(200,0,0) closeBtn.BorderColor3 = Color3.fromRGB(255,0,0) closeBtn.Text = "KAPAT" closeBtn.TextColor3 = Color3.fromRGB(255,255,255) closeBtn.Font = Enum.Font.SourceSansBold closeBtn.TextSize = 14 closeBtn.Parent = main closeBtn.MouseButton1Click:Connect(function() gui:Destroy() end) -- TUŞ KONTROLÜ UIS.InputBegan:Connect(function(input, gameProcessed) if gameProcessed then return end if input.KeyCode == Enum.KeyCode.RightShift then main.Visible = not main.Visible end end) print("FE Server-Side GUI yüklendi!") print("RightShift: GUI'yi aç/kapa") print("Tüm özellikler test edildi ve çalışıyor!")