local player = game.Players.LocalPlayer local StarterGui = game:GetService("StarterGui") -- HOCK KİCH Butonu local hockButton = script.Parent:FindFirstChild("HOCK KİCH") hockButton.MouseButton1Click:Connect(function() for i = 1, 70 do StarterGui:SetCore("ChatMakeSystemMessage", { Text = "HOCK BY KİCH NUKER SERVER!!!!!!", Color = Color3.new(math.random(), math.random(), math.random()), -- Renkli yazı Font = Enum.Font.SourceSansBold, TextSize = 20, }) task.wait(1) -- 1 saniye aralıklarla mesaj gösterir end end) -- SWORD KİCH Butonu local swordButton = script.Parent:FindFirstChild("SWORD KİCH") swordButton.MouseButton1Click:Connect(function() local tool = Instance.new("Tool") tool.Name = "Sword" tool.RequiresHandle = true tool.CanBeDropped = false local handle = Instance.new("Part") handle.Name = "Handle" handle.Size = Vector3.new(1, 5, 1) handle.Parent = tool -- Kılıcı oyuncunun sırtına ekle tool.Parent = player.Backpack end) -- SKYBOX Butonu local skyboxButton = script.Parent:FindFirstChild("SKYBOX") skyboxButton.MouseButton1Click:Connect(function() local lighting = game:GetService("Lighting") local sky = Instance.new("Sky") sky.SkyboxBk = "rbxassetid://79993652979956" sky.SkyboxFt = "rbxassetid://79993652979956" sky.SkyboxLf = "rbxassetid://79993652979956" sky.SkyboxRt = "rbxassetid://79993652979956" sky.SkyboxUp = "rbxassetid://79993652979956" sky.SkyboxDn = "rbxassetid://79993652979956" lighting.Sky = sky end) -- KİCH REALM Butonu local realmButton = script.Parent:FindFirstChild("KİCH REALM") realmButton.MouseButton1Click:Connect(function() for _, otherPlayer in pairs(game.Players:GetPlayers()) do local billboard = Instance.new("BillboardGui") billboard.Size = UDim2.new(2, 0, 2, 0) billboard.Adornee = otherPlayer.Character:FindFirstChild("Head") billboard.AlwaysOnTop = true local label = Instance.new("TextLabel") label.Size = UDim2.new(1, 0, 1, 0) label.Text = "KİCH070" label.TextColor3 = Color3.new(1, 0, 0) -- Kırmızı label.Font = Enum.Font.SourceSansBold label.TextScaled = true label.BackgroundTransparency = 1 label.Parent = billboard billboard.Parent = otherPlayer.Character.Head -- Kafaların yanması local fire = Instance.new("Fire") fire.Parent = otherPlayer.Character:FindFirstChild("Head") end -- Mesaj ve ses StarterGui:SetCore("ChatMakeSystemMessage", { Text = "KİCH REALM Loading ......", Color = Color3.new(1, 0, 0), -- Kırmızı yazı Font = Enum.Font.SourceSansBold, TextSize = 20, }) task.wait(6) local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://8680587619" sound.Volume = 8 sound.Parent = workspace sound:Play() -- Sunucudaki oyuncular konuşuyor for _, otherPlayer in pairs(game.Players:GetPlayers()) do otherPlayer:Kick("kich The best hacker!") end end)