local TCS = game:GetService("TextChatService") local Players = game:GetService("Players") local localPlayer = Players.LocalPlayer local channel = TCS:WaitForChild("TextChannels"):WaitForChild("RBXGeneral") local function send(msg) if channel then pcall(function() channel:SendAsync(msg) end) end end -- --- DEĞİŞKENLER --- local AggroActive = false local KillCooldown = false local RandomEventEnabled = false local RedScreen = nil local AggroEnabled = true local IsInvisible = false -- --- GUI --- local ScreenGui = Instance.new("ScreenGui", localPlayer.PlayerGui) ScreenGui.Name = "JosephUltimateV17" ScreenGui.ResetOnSpawn = false ScreenGui.IgnoreGuiInset = true local Main = Instance.new("Frame", ScreenGui) Main.Size = UDim2.new(0, 200, 0, 260) -- Boyut arttı Main.Position = UDim2.new(0.05, 0, 0.35, 0) Main.BackgroundColor3 = Color3.fromRGB(15, 15, 15) Main.BorderSizePixel = 2 Main.BorderColor3 = Color3.new(1, 0, 0) Main.Active = true Main.Draggable = true -- --- GÖRÜNMEZLİK BUTONU --- local InvisBtn = Instance.new("TextButton", ScreenGui) InvisBtn.Text = "GÖRÜNMEZ OL" InvisBtn.Size = UDim2.new(0, 130, 0, 50) InvisBtn.Position = UDim2.new(0.85, 0, 0.45, 0) InvisBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) InvisBtn.TextColor3 = Color3.new(1, 1, 1) InvisBtn.Font = Enum.Font.SourceSansBold InvisBtn.Visible = false -- --- BUTON OLUŞTURUCU --- local function createBtn(text, pos, color) local btn = Instance.new("TextButton", Main) btn.Text = text btn.Size = UDim2.new(0.9, 0, 0, 35) btn.Position = pos btn.BackgroundColor3 = color btn.TextColor3 = Color3.new(1, 1, 1) btn.Font = Enum.Font.SourceSansBold return btn end local AggroBtn = createBtn("AGGRESSIVE MODE", UDim2.new(0.05, 0, 0.05, 0), Color3.fromRGB(150, 0, 0)) local Stage2Btn = createBtn("STAGE 2 (30s)", UDim2.new(0.05, 0, 0.23, 0), Color3.fromRGB(100, 0, 150)) local EventBtn = createBtn("RANDOM EVENT: OFF", UDim2.new(0.05, 0, 0.41, 0), Color3.fromRGB(50, 50, 50)) local NormalBtn = createBtn("NORMAL MODE", UDim2.new(0.05, 0, 0.59, 0), Color3.fromRGB(0, 120, 0)) local BToolsBtn = createBtn("GET BTOOLS", UDim2.new(0.05, 0, 0.77, 0), Color3.fromRGB(40, 40, 40)) -- --- RANDOM EVENT SİSTEMİ --- local events = { function() send(";Hint J O S E P H I S R E A L") end, function() send(";Hint H E I S H E R E") end, function() send(";music 1254352136") end, function() send(";fog") task.wait(5) send(";unfog") end, function() send(";volume 0.8") end } task.spawn(function() while true do task.wait(30) if RandomEventEnabled then local randomFunc = events[math.random(1, #events)] randomFunc() end end end) EventBtn.MouseButton1Click:Connect(function() RandomEventEnabled = not RandomEventEnabled if RandomEventEnabled then EventBtn.Text = "RANDOM EVENT: ON" EventBtn.BackgroundColor3 = Color3.fromRGB(200, 150, 0) else EventBtn.Text = "RANDOM EVENT: OFF" EventBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) end end) -- --- DOKUNMA KORUMASI --- local function setupTouch(char) char:WaitForChild("HumanoidRootPart").Touched:Connect(function(hit) if AggroActive and not KillCooldown then local p = Players:GetPlayerFromCharacter(hit.Parent) if p and p ~= localPlayer then KillCooldown = true send(";kill " .. p.Name) task.wait(2) KillCooldown = false end end end) end localPlayer.CharacterAdded:Connect(setupTouch) if localPlayer.Character then setupTouch(localPlayer.Character) end -- --- DİĞER FONKSİYONLAR --- InvisBtn.MouseButton1Click:Connect(function() IsInvisible = not IsInvisible if IsInvisible then send(";invisible me") InvisBtn.Text = "GÖRÜNÜR OL" else send(";uninvisible me") InvisBtn.Text = "GÖRÜNMEZ OL" end end) AggroBtn.MouseButton1Click:Connect(function() if not AggroEnabled then return end AggroActive = true if not RedScreen then RedScreen = Instance.new("Frame", ScreenGui) RedScreen.Size = UDim2.new(1, 0, 1, 0) RedScreen.BackgroundColor3 = Color3.new(1, 0, 0) RedScreen.BackgroundTransparency = 0.85 RedScreen.ZIndex = -1 end local char = localPlayer.Character if char then char.Animate.Disabled = true char.Humanoid.WalkSpeed = 28 end send(";hat me 11442395338") send(";music 74138341335571") task.wait(3) send(";music 128235418354706") end) Stage2Btn.MouseButton1Click:Connect(function() AggroEnabled = false InvisBtn.Visible = true send(";fog") send(";volume 0.6") send(";music 120194926036736") if localPlayer.Character then localPlayer.Character.Humanoid.WalkSpeed = 35 end task.wait(10) send(";music 88305761985970") task.wait(20) send(";unfog") send(";unmusic") send(";uninvisible me") InvisBtn.Visible = false AggroEnabled = true end) NormalBtn.MouseButton1Click:Connect(function() AggroActive = false InvisBtn.Visible = false RandomEventEnabled = false EventBtn.Text = "RANDOM EVENT: OFF" if RedScreen then RedScreen:Destroy() RedScreen = nil end local char = localPlayer.Character if char then char.Animate.Disabled = false char.Humanoid.WalkSpeed = 16 end send(";unmusic") send(";unfog") send(";uninvisible me") send(";volume 1") task.wait(1) send(";clearhats") task.wait(1) send(";hat me 111864208223192") end) BToolsBtn.MouseButton1Click:Connect(function() send(";f3x me") send(";btools me") end) task.spawn(function() task.wait(0.5) send(";char me reallllllllljoseph") task.wait(1) send(";hat me 111864208223192") end)