local TweenService = game:GetService("TweenService") local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local Lighting = game:GetService("Lighting") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TeleportService = game:GetService("TeleportService") local HttpService = game:GetService("HttpService") local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Sidebar = Instance.new("Frame") local Title = Instance.new("TextLabel") local CloseBtn = Instance.new("TextButton") -- ======================================================== -- 👑 layso65 SABİT PROFİL VE İMZA ALANI -- ======================================================== local UserImage = Instance.new("ImageLabel") local CreditsLabel = Instance.new("TextLabel") -- Sekme Butonları local MainTabBtn = Instance.new("TextButton") local VisualsTabBtn = Instance.new("TextButton") local TpTabBtn = Instance.new("TextButton") local ChatTabBtn = Instance.new("TextButton") -- Sekme İçerik Panelleri local MainPage = Instance.new("Frame") local VisualsPage = Instance.new("Frame") local TpPage = Instance.new("Frame") local ChatPage = Instance.new("Frame") Instance.new("UICorner", MainFrame).CornerRadius = UDim.new(0, 8) Instance.new("UICorner", Sidebar).CornerRadius = UDim.new(0, 8) ScreenGui.Name = "SaeHubV12_layso65_Fixed" ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) MainFrame.BackgroundTransparency = 0.15 MainFrame.Position = UDim2.new(0.35, 0, 1.2, 0) MainFrame.Size = UDim2.new(0, 450, 0, 320) MainFrame.Active = true MainFrame.Draggable = true Sidebar.Name = "Sidebar" Sidebar.Parent = MainFrame Sidebar.BackgroundColor3 = Color3.fromRGB(10, 10, 10) Sidebar.BackgroundTransparency = 0.3 Sidebar.Size = UDim2.new(0, 120, 1, 0) Title.Parent = Sidebar Title.BackgroundTransparency = 1 Title.Position = UDim2.new(0, 0, 0, 5) Title.Size = UDim2.new(1, 0, 0, 30) Title.Font = Enum.Font.GothamBold Title.Text = "SAE HUB V12" Title.TextColor3 = Color3.fromRGB(255, 50, 50) Title.TextSize = 14 -- 🖼️ layso65 KESİN PROFİL RESMİ UserImage.Parent = Sidebar UserImage.BackgroundTransparency = 1 UserImage.Position = UDim2.new(0.1, 0, 0.73, 0) UserImage.Size = UDim2.new(0, 35, 0, 35) UserImage.Image = "https://www.roblox.com/headshot-thumbnail/image?userId=1759616235&width=150&height=150&format=png" Instance.new("UICorner", UserImage).CornerRadius = UDim.new(1, 0) -- ✍️ BY layso65 IMZASI CreditsLabel.Parent = Sidebar CreditsLabel.BackgroundTransparency = 1 CreditsLabel.Position = UDim2.new(0.45, 0, 0.73, 0) CreditsLabel.Size = UDim2.new(0.5, 0, 0, 35) CreditsLabel.Font = Enum.Font.GothamBold CreditsLabel.Text = "by\nlayso65" CreditsLabel.TextColor3 = Color3.fromRGB(255, 215, 0) CreditsLabel.TextSize = 10 CreditsLabel.TextXAlignment = Enum.TextXAlignment.Left CloseBtn.Parent = MainFrame CloseBtn.BackgroundColor3 = Color3.fromRGB(220, 50, 50) CloseBtn.Position = UDim2.new(0.93, 0, 0.03, 0) CloseBtn.Size = UDim2.new(0, 22, 0, 22) CloseBtn.Font = Enum.Font.GothamBold CloseBtn.Text = "X" CloseBtn.TextColor3 = Color3.fromRGB(255, 255, 255) CloseBtn.TextSize = 11 Instance.new("UICorner", CloseBtn).CornerRadius = UDim.new(0, 4) local function CreateTabBtn(text, pos, parent) local btn = Instance.new("TextButton") btn.Parent = parent btn.BackgroundColor3 = Color3.fromRGB(25, 25, 25) btn.BackgroundTransparency = 0.4 btn.Position = pos btn.Size = UDim2.new(0.9, 0, 0, 26) btn.Font = Enum.Font.GothamBold btn.Text = text btn.TextColor3 = Color3.fromRGB(180, 180, 180) btn.TextSize = 11 Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 5) return btn end MainTabBtn = CreateTabBtn("⚙️ Main", UDim2.new(0.05, 0, 0.15, 0), Sidebar) VisualsTabBtn = CreateTabBtn("👁️ Visuals", UDim2.new(0.05, 0, 0.26, 0), Sidebar) TpTabBtn = CreateTabBtn("🌀 Teleport", UDim2.new(0.05, 0, 0.37, 0), Sidebar) ChatTabBtn = CreateTabBtn("💬 Chat / Fun", UDim2.new(0.05, 0, 0.48, 0), Sidebar) local function CreatePage(name) local page = Instance.new("Frame") page.Name = name page.Parent = MainFrame page.BackgroundTransparency = 1 page.Position = UDim2.new(0.3, 0, 0.1, 0) page.Size = UDim2.new(0.68, 0, 0.88, 0) page.Visible = false return page end MainPage = CreatePage("MainPage") VisualsPage = CreatePage("VisualsPage") TpPage = CreatePage("TpPage") ChatPage = CreatePage("ChatPage") local function ShowPage(pageToShow, activeBtn) MainPage.Visible = false VisualsPage.Visible = false TpPage.Visible = false ChatPage.Visible = false MainTabBtn.TextColor3 = Color3.fromRGB(140, 140, 140) VisualsTabBtn.TextColor3 = Color3.fromRGB(140, 140, 140) TpTabBtn.TextColor3 = Color3.fromRGB(140, 140, 140) ChatTabBtn.TextColor3 = Color3.fromRGB(140, 140, 140) pageToShow.Visible = true activeBtn.TextColor3 = Color3.fromRGB(255, 50, 50) end MainTabBtn.MouseButton1Click:Connect(function() ShowPage(MainPage, MainTabBtn) end) VisualsTabBtn.MouseButton1Click:Connect(function() ShowPage(VisualsPage, VisualsTabBtn) end) TpTabBtn.MouseButton1Click:Connect(function() ShowPage(TpPage, TpTabBtn) end) ChatTabBtn.MouseButton1Click:Connect(function() ShowPage(ChatPage, ChatTabBtn) end) ShowPage(MainPage, MainTabBtn) local function AddButton(text, color, pos, parent) local btn = Instance.new("TextButton") btn.Parent = parent btn.BackgroundColor3 = color btn.BackgroundTransparency = 0.25 btn.Position = pos btn.Size = UDim2.new(0.96, 0, 0, 24) btn.Font = Enum.Font.GothamBold btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.TextSize = 11 Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 4) return btn end -- BUTTONS local AutoKillBtn = AddButton("OTO KILL", Color3.fromRGB(20, 140, 40), UDim2.new(0, 0, 0, 0), MainPage) local AntiKnifeBtn = AddButton("ANTI KNIFE: OFF", Color3.fromRGB(170, 20, 90), UDim2.new(0, 0, 0, 28), MainPage) local KillAuraBtn = AddButton("⚔️ Kill Aura (OFF)", Color3.fromRGB(120, 20, 20), UDim2.new(0, 0, 0, 56), MainPage) local AutoCoinBtn = AddButton("🪙 Auto Collect Coins (FIXED)", Color3.fromRGB(180, 130, 20), UDim2.new(0, 0, 0, 84), MainPage) local SpeedBtn = AddButton("⚡ Speed Hack (FIXED)", Color3.fromRGB(70, 70, 70), UDim2.new(0, 0, 0, 112), MainPage) local JumpBtn = AddButton("🦘 Inf Jump (OFF)", Color3.fromRGB(70, 70, 70), UDim2.new(0, 0, 0, 140), MainPage) local HitboxBtn = AddButton("🛑 Hitbox Expander (OFF)", Color3.fromRGB(140, 70, 20), UDim2.new(0, 0, 0, 168), MainPage) local InviBtn = AddButton("👻 Invisible Mode (OFF)", Color3.fromRGB(30, 130, 130), UDim2.new(0, 0, 0, 196), MainPage) local MurderBtn = AddButton("Murder ESP", Color3.fromRGB(170, 20, 20), UDim2.new(0, 0, 0, 0), VisualsPage) local SheriffBtn = AddButton("Sheriff ESP", Color3.fromRGB(20, 50, 170), UDim2.new(0, 0, 0, 28), VisualsPage) local XrayBtn = AddButton("🧱 X-Ray (Duvarları Kapat)", Color3.fromRGB(60, 60, 60), UDim2.new(0, 0, 0, 56), VisualsPage) local FullbrightBtn = AddButton("💡 FullBright (Gece Görüşü)", Color3.fromRGB(160, 130, 10), UDim2.new(0, 0, 0, 84), VisualsPage) local SpectateBtn = AddButton("🎥 Spectate Murder (OFF)", Color3.fromRGB(80, 20, 110), UDim2.new(0, 0, 0, 112), VisualsPage) local AimlockBtn = AddButton("🎯 Sheriff Aimlock (OFF)", Color3.fromRGB(180, 30, 30), UDim2.new(0, 0, 0, 140), VisualsPage) local GunTpBtn = AddButton("GUN TP", Color3.fromRGB(200, 130, 10), UDim2.new(0, 0, 0, 0), TpPage) local SpawnBtn = AddButton("SPAWN TO (Lobby)", Color3.fromRGB(110, 20, 150), UDim2.new(0, 0, 0, 28), TpPage) local LoopKillMurderBtn = AddButton("🎯 Loop Kill Murder (OFF)", Color3.fromRGB(190, 40, 40), UDim2.new(0, 0, 0, 56), TpPage) local ServerHopBtn = AddButton("✈️ Server Hop (Başka Sunucuya Kaç)", Color3.fromRGB(40, 120, 40), UDim2.new(0, 0, 0, 84), TpPage) local ExposeBtn = AddButton("📢 Expose Murder (Katili İfşa Et)", Color3.fromRGB(30, 100, 160), UDim2.new(0, 0, 0, 0), ChatPage) local EmoteBtn = AddButton("🕺 Auto Ninja Dance (OFF)", Color3.fromRGB(130, 40, 160), UDim2.new(0, 0, 0, 28), ChatPage) TweenService:Create(MainFrame, TweenInfo.new(0.6, Enum.EasingStyle.Quart, Enum.EasingDirection.Out), {Position = UDim2.new(0.35, 0, 0.25, 0)}):Play() CloseBtn.MouseButton1Click:Connect(function() local c = TweenService:Create(MainFrame, TweenInfo.new(0.5, Enum.EasingStyle.Quart, Enum.EasingDirection.In), {Position = UDim2.new(0.35, 0, 1.2, 0), BackgroundTransparency = 1}) c:Play() c.Completed:Connect(function() ScreenGui:Destroy() end) end) local function GetRoles() local m, s for _, p in pairs(Players:GetPlayers()) do if p.Character then if p.Backpack:FindFirstChild("Knife") or p.Character:FindFirstChild("Knife") then m = p elseif p.Backpack:FindFirstChild("Gun") or p.Character:FindFirstChild("Gun") then s = p end end end return m, s end -- 🚀 GÜVENLİ SPAWN TO LOBBY METODU (FallenParts / Anticheat Koruyucu) SpawnBtn.MouseButton1Click:Connect(function() local char = LocalPlayer.Character if char and char:FindFirstChild("HumanoidRootPart") then local targetCFrame = nil local lobby = workspace:FindFirstChild("Lobby") or workspace:FindFirstChild("LobbyArea") if lobby and lobby:FindFirstChild("SpawnLocation", true) then targetCFrame = lobby:FindFirstChild("SpawnLocation", true).CFrame + Vector3.new(0, 5, 0) elseif workspace:FindFirstChild("SpawnLocation") then targetCFrame = workspace.SpawnLocation.CFrame + Vector3.new(0, 5, 0) else targetCFrame = CFrame.new(0, 95, 0) end if targetCFrame then SpawnBtn.Text = "Işınlanıyor..." -- Hızları sıfırla ki oyun hızı algılayıp void'e fırlatmasın char.HumanoidRootPart.Velocity = Vector3.new(0, 0, 0) char.HumanoidRootPart.RotVelocity = Vector3.new(0, 0, 0) -- PivotTo ile karakteri lobi zemininin 5 blok yukarısına bırakıyoruz char:PivotTo(targetCFrame) SpawnBtn.Text = "Güvenli Işınlandı!" task.wait(1) SpawnBtn.Text = "SPAWN TO (Lobby)" end end end) -- HITBOX EXPANDER local hitboxEnabled = false HitboxBtn.MouseButton1Click:Connect(function() hitboxEnabled = not hitboxEnabled HitboxBtn.Text = hitboxEnabled and "🛑 Hitbox Expander (ON)" or "🛑 Hitbox Expander (OFF)" HitboxBtn.BackgroundColor3 = hitboxEnabled and Color3.fromRGB(20, 150, 40) or Color3.fromRGB(140, 70, 20) end) task.spawn(function() while task.wait(0.5) do if hitboxEnabled then for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then p.Character.HumanoidRootPart.Size = Vector3.new(15, 15, 15) p.Character.HumanoidRootPart.Transparency = 0.7 p.Character.HumanoidRootPart.Color = Color3.fromRGB(255, 0, 0) p.Character.HumanoidRootPart.CanCollide = false end end else for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then p.Character.HumanoidRootPart.Size = Vector3.new(2, 2, 1) p.Character.HumanoidRootPart.Transparency = 1 end end end end end) -- INVISIBLE MODE local invisible = false InviBtn.MouseButton1Click:Connect(function() invisible = not invisible InviBtn.Text = invisible and "👻 Invisible Mode (ON)" or "👻 Invisible Mode (OFF)" InviBtn.BackgroundColor3 = invisible and Color3.fromRGB(20, 150, 40) or Color3.fromRGB(30, 130, 130) local char = LocalPlayer.Character if char and char:FindFirstChild("LowerTorso") then if invisible then char.LowerTorso.Root.C0 = char.LowerTorso.Root.C0 * CFrame.new(0, 500, 0) else char.LowerTorso.Root.C0 = char.LowerTorso.Root.C0 * CFrame.new(0, -500, 0) end end end) -- SHERIFF AIMLOCK local aimlockEnabled = false AimlockBtn.MouseButton1Click:Connect(function() aimlockEnabled = not aimlockEnabled AimlockBtn.Text = aimlockEnabled and "🎯 Sheriff Aimlock (ON)" or "🎯 Sheriff Aimlock (OFF)" AimlockBtn.BackgroundColor3 = aimlockEnabled and Color3.fromRGB(20, 150, 40) or Color3.fromRGB(180, 30, 30) end) game:GetService("RunService").RenderStepped:Connect(function() if aimlockEnabled then local m, _ = GetRoles() if m and m.Character and m.Character:FindFirstChild("HumanoidRootPart") and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then if LocalPlayer.Character:FindFirstChild("Gun") then workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position, m.Character.HumanoidRootPart.Position) end end end end) -- SERVER HOP ServerHopBtn.MouseButton1Click:Connect(function() ServerHopBtn.Text = "Aranıyor..." local x = game.HttpService:JSONDecode(game:HttpGet("https://games.roblox.com/v1/games/"..game.PlaceId.."/servers/Public?sortOrder=Asc&limit=100")) for _, s in pairs(x.data) do if s.playing < s.maxPlayers and s.id ~= game.JobId then TeleportService:TeleportToPlaceInstance(game.PlaceId, s.id, LocalPlayer) break end end end) -- AUTO EMOTE DANCE local autoEmote = false EmoteBtn.MouseButton1Click:Connect(function() autoEmote = not autoEmote EmoteBtn.Text = autoEmote and "🕺 Ninja Dance (ON)" or "🕺 Auto Ninja Dance (OFF)" EmoteBtn.BackgroundColor3 = autoEmote and Color3.fromRGB(20, 150, 40) or Color3.fromRGB(130, 40, 160) end) task.spawn(function() while task.wait(0.1) do if autoEmote then ReplicatedStorage.PlayEmote:FireServer("ninja") task.wait(0.5) end end end) -- SPEED & COIN FIXED SCRIPT local speedEnabled = false local speedValue = 35 SpeedBtn.MouseButton1Click:Connect(function() speedEnabled = not speedEnabled SpeedBtn.Text = speedEnabled and "⚡ Speed (BYPASS ON)" or "⚡ Speed Hack (FIXED)" SpeedBtn.BackgroundColor3 = speedEnabled and Color3.fromRGB(20, 150, 40) or Color3.fromRGB(80, 80, 80) end) game:GetService("RunService").Heartbeat:Connect(function() if speedEnabled and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") and LocalPlayer.Character:FindFirstChild("Humanoid") then local hum = LocalPlayer.Character.Humanoid if hum.MoveDirection.Magnitude > 0 then LocalPlayer.Character.HumanoidRootPart.CFrame = LocalPlayer.Character.HumanoidRootPart.CFrame + (hum.MoveDirection * (speedValue / 60)) end end end) local autoCoin = false AutoCoinBtn.MouseButton1Click:Connect(function() autoCoin = not autoCoin AutoCoinBtn.Text = autoCoin and "🪙 Auto Coins (TP ON)" or "🪙 Auto Collect Coins (FIXED)" AutoCoinBtn.BackgroundColor3 = autoCoin and Color3.fromRGB(20, 150, 40) or Color3.fromRGB(190, 140, 20) end) task.spawn(function() while task.wait(0.5) do if autoCoin and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") and (obj.Name == "Coin_Sub" or obj.Name == "GoldCoin" or obj.Name == "Coin" or obj.Name == "CandyCane") then if autoCoin and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then local old = LocalPlayer.Character.HumanoidRootPart.CFrame LocalPlayer.Character.HumanoidRootPart.CFrame = obj.CFrame task.wait(0.04) LocalPlayer.Character.HumanoidRootPart.CFrame = old task.wait(0.2) end end end end end end) -- GENERAL SYSTEMS local killAuraEnabled = false KillAuraBtn.MouseButton1Click:Connect(function() killAuraEnabled = not killAuraEnabled KillAuraBtn.Text = killAuraEnabled and "⚔️ Kill Aura (ON)" or "⚔️ Kill Aura (OFF)" KillAuraBtn.BackgroundColor3 = killAuraEnabled and Color3.fromRGB(20, 150, 40) or Color3.fromRGB(130, 20, 20) end) task.spawn(function() while task.wait(0.1) do if killAuraEnabled then local knife = LocalPlayer.Character:FindFirstChild("Knife") or LocalPlayer.Backpack:FindFirstChild("Knife") if knife then for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer and p.Character and p.Character:FindFirstChild("HumanoidRootPart") and p.Character.Humanoid.Health > 0 then if (LocalPlayer.Character.HumanoidRootPart.Position - p.Character.HumanoidRootPart.Position).Magnitude <= 12 then LocalPlayer.Character.Humanoid:EquipTool(knife) knife:Activate() end end end end end end end) local antiKnifeEnabled = false AntiKnifeBtn.MouseButton1Click:Connect(function() antiKnifeEnabled = not antiKnifeEnabled AntiKnifeBtn.Text = antiKnifeEnabled and "ANTI KNIFE: ON" or "ANTI KNIFE: OFF" AntiKnifeBtn.BackgroundColor3 = antiKnifeEnabled and Color3.fromRGB(20, 180, 100) or Color3.fromRGB(180, 20, 100) end) task.spawn(function() while task.wait(0.1) do if antiKnifeEnabled then local m,_ = GetRoles() if m and m ~= LocalPlayer and m.Character and m.Character:FindFirstChild("HumanoidRootPart") then if (LocalPlayer.Character.HumanoidRootPart.Position - m.Character.HumanoidRootPart.Position).Magnitude <= 15 and (m.Character:FindFirstChild("Knife") or m.Backpack:FindFirstChild("Knife")) then LocalPlayer.Character.HumanoidRootPart.CFrame = LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(math.random(-40,40), 15, math.random(-40,40)) end end end end end) local function CreateESP(p, c) if p and p.Character then if p.Character:FindFirstChild("SaeESP") then p.Character.SaeESP:Destroy() end local h = Instance.new("Highlight", p.Character) h.Name = "SaeESP" h.FillColor = c h.FillTransparency = 0.4 end end MurderBtn.MouseButton1Click:Connect(function() local m,_ = GetRoles() if m then CreateESP(m, Color3.fromRGB(255,0,0)) MurderBtn.Text = "Murder: "..m.Name end end) SheriffBtn.MouseButton1Click:Connect(function() local _,s = GetRoles() if s then CreateESP(s, Color3.fromRGB(0,0,255)) SheriffBtn.Text = "Sheriff: "..s.Name end end) local spectating = false SpectateBtn.MouseButton1Click:Connect(function() spectating = not spectating if spectating then local m, _ = GetRoles() if m and m.Character and m.Character:FindFirstChild("Humanoid") then workspace.CurrentCamera.CameraSubject = m.Character.Humanoid SpectateBtn.Text = "🎥 Spectating: " .. m.Name:sub(1,10) else SpectateBtn.Text = "Katil Yok!" spectating = false end else workspace.CurrentCamera.CameraSubject = LocalPlayer.Character.Humanoid SpectateBtn.Text = "🎥 Spectate Murder (OFF)" end end) local loopKillM = false LoopKillMurderBtn.MouseButton1Click:Connect(function() loopKillM = not loopKillM LoopKillMurderBtn.Text = loopKillM and "🎯 Loop Kill M (ON)" or "🎯 Loop Kill Murder (OFF)" LoopKillMurderBtn.BackgroundColor3 = loopKillM and Color3.fromRGB(20, 150, 40) or Color3.fromRGB(200, 50, 50) end) task.spawn(function() while task.wait(0.1) do if loopKillM then local gun = LocalPlayer.Character:FindFirstChild("Gun") or LocalPlayer.Backpack:FindFirstChild("Gun") local m, _ = GetRoles() if gun and m and m.Character and m.Character:FindFirstChild("HumanoidRootPart") and m.Character.Humanoid.Health > 0 then LocalPlayer.Character.Humanoid:EquipTool(gun) LocalPlayer.Character.HumanoidRootPart.CFrame = m.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 3) gun:Activate() end end end end) ExposeBtn.MouseButton1Click:Connect(function() local m, _ = GetRoles() if m then local msg = "🚨 KATİL BULDUM! KATİL: " .. m.Name .. " ! KAÇIN VEYA VURUN!" if ReplicatedStorage:FindFirstChild("DefaultChatSystemChatEvents") then ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All") else game:GetService("TextChatService").TextChannels.RBXGeneral:SendAsync(msg) end ExposeBtn.Text = "İfşa Edildi!" task.wait(1) ExposeBtn.Text = "📢 Expose Murder" else ExposeBtn.Text = "Katil Yok!" task.wait(1) ExposeBtn.Text = "📢 Expose Murder" end end) AutoKillBtn.MouseButton1Click:Connect(function() local kn = LocalPlayer.Backpack:FindFirstChild("Knife") or LocalPlayer.Character:FindFirstChild("Knife") if not kn then return end LocalPlayer.Character.Humanoid:EquipTool(kn) for _, t in pairs(Players:GetPlayers()) do if t ~= LocalPlayer and t.Character and t.Character:FindFirstChild("HumanoidRootPart") and t.Character.Humanoid.Health > 0 then LocalPlayer.Character.HumanoidRootPart.CFrame = t.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,1.2) kn:Activate() task.wait(0.04) end end end) local infJump = false JumpBtn.MouseButton1Click:Connect(function() infJump = not infJump JumpBtn.Text = infJump and "🦘 Inf Jump (ON)" or "🦘 Inf Jump (OFF)" JumpBtn.BackgroundColor3 = infJump and Color3.fromRGB(20,150,40) or Color3.fromRGB(80,80,80) end) game:GetService("UserInputService").JumpRequest:Connect(function() if infJump and LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping") end end) local xrayEnabled = false XrayBtn.MouseButton1Click:Connect(function() xrayEnabled = not xrayEnabled XrayBtn.Text = xrayEnabled and "🧱 X-Ray (ON)" or "🧱 X-Ray (OFF)" for _, o in pairs(workspace:GetDescendants()) do if o:IsA("BasePart") and not o:IsDescendantOf(LocalPlayer.Character) and not o.Parent:FindFirstChild("Humanoid") and o.Name ~= "Terrain" then if xrayEnabled then if not o:FindFirstChild("OldTrans") then local v = Instance.new("NumberValue", o) v.Name = "OldTrans" v.Value = o.Transparency end o.Transparency = 0.65 elseif not xrayEnabled and o:FindFirstChild("OldTrans") then o.Transparency = o.OldTrans.Value o.OldTrans:Destroy() end end end end) local fbEnabled = false FullbrightBtn.MouseButton1Click:Connect(function() fbEnabled = not fbEnabled FullbrightBtn.Text = fbEnabled and "💡 Bright (ON)" or "💡 Bright (OFF)" Lighting.Ambient = fbEnabled and Color3.fromRGB(255,255,255) or Color3.fromRGB(130,130,130) Lighting.Brightness = fbEnabled and 2 or 1 end) GunTpBtn.MouseButton1Click:Connect(function() local char = LocalPlayer.Character if char and char:FindFirstChild("HumanoidRootPart") then local dg = workspace:FindFirstChild("GunDrop") or workspace:FindFirstChild("Gun") or workspace:FindFirstChild("GunDrop", true) if dg then local old = char.HumanoidRootPart.CFrame char.HumanoidRootPart.CFrame = dg:IsA("Tool") and dg.Handle.CFrame or dg.CFrame task.wait(0.05) char.HumanoidRootPart.CFrame = old GunTpBtn.Text = "Alındı!" else GunTpBtn.Text = "Yok!" end task.wait(1) GunTpBtn.Text = "GUN TP" end end) task.spawn(function() local oldM while task.wait(1) do local m,_ = GetRoles() if m and m ~= oldM and m.Character and (m.Character:FindFirstChild("Knife") or m.Backpack:FindFirstChild("Knife")) then oldM = m Title.Text = "⚠️ MURDER: " .. m.Name:sub(1,8) Title.TextColor3 = Color3.fromRGB(255,50,50) task.wait(3) Title.Text = "SAE HUB V12" Title.TextColor3 = Color3.fromRGB(255,255,255) end end end)