-- Create the Hub GUI local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Title = Instance.new("TextLabel") local JumpscareAllButton = Instance.new("TextButton") local CoolkidSkyboxButton = Instance.new("TextButton") local MessageButton = Instance.new("TextButton") local JumpHighButton = Instance.new("TextButton") local ScaryVoiceButton = Instance.new("TextButton") local LargeFireButton = Instance.new("TextButton") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.Name = "1x1x1x1x1x1xHub" Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.new(0, 0, 0) Frame.Position = UDim2.new(0.4, 0, 0.3, 0) Frame.Size = UDim2.new(0, 200, 0, 350) Frame.Draggable = true Frame.Active = true Title.Parent = Frame Title.BackgroundColor3 = Color3.new(1, 0, 0) Title.Size = UDim2.new(1, 0, 0, 50) Title.Font = Enum.Font.GothamBold Title.Text = "1x1x1x1x1x1x Hub" Title.TextColor3 = Color3.new(1, 1, 1) Title.TextSize = 16 -- Buttons local function createButton(button, parent, text, pos) button.Parent = parent button.Size = UDim2.new(1, 0, 0, 40) button.Position = pos button.Font = Enum.Font.GothamBold button.Text = text button.TextSize = 14 button.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2) button.TextColor3 = Color3.new(1, 1, 1) end createButton(JumpscareAllButton, Frame, "Jumpscare All", UDim2.new(0, 0, 0.2, 0)) createButton(CoolkidSkyboxButton, Frame, "Red Coolkid Skybox", UDim2.new(0, 0, 0.3, 0)) createButton(MessageButton, Frame, "1x1x1x1x1x1x Message", UDim2.new(0, 0, 0.4, 0)) createButton(JumpHighButton, Frame, "Jump High", UDim2.new(0, 0, 0.5, 0)) createButton(ScaryVoiceButton, Frame, "Loud Scary Voice", UDim2.new(0, 0, 0.6, 0)) createButton(LargeFireButton, Frame, "Red Large Fire", UDim2.new(0, 0, 0.7, 0)) -- Functionality local function jumpscareAll() for _, player in pairs(game.Players:GetPlayers()) do if player:FindFirstChild("PlayerGui") then local jumpscareGui = Instance.new("ScreenGui") local jumpscareLabel = Instance.new("TextLabel") jumpscareGui.Parent = player.PlayerGui jumpscareGui.Name = "JumpscareGui" jumpscareLabel.Parent = jumpscareGui jumpscareLabel.Size = UDim2.new(1, 0, 1, 0) jumpscareLabel.BackgroundColor3 = Color3.new(0, 0, 0) jumpscareLabel.Text = ":)" jumpscareLabel.Font = Enum.Font.GothamBold jumpscareLabel.TextColor3 = Color3.new(1, 0, 0) jumpscareLabel.TextScaled = true wait(4) jumpscareGui:Destroy() end end end local function setCoolkidSkybox() local sky = Instance.new("Sky") sky.Parent = game.Lighting sky.SkyboxBk = "http://www.roblox.com/asset/?id=9422866248" sky.SkyboxDn = "http://www.roblox.com/asset/?id=9422866248" sky.SkyboxFt = "http://www.roblox.com/asset/?id=9422866248" sky.SkyboxLf = "http://www.roblox.com/asset/?id=9422866248" sky.SkyboxRt = "http://www.roblox.com/asset/?id=9422866248" sky.SkyboxUp = "http://www.roblox.com/asset/?id=9422866248" end local function sendMessage() for _, player in pairs(game.Players:GetPlayers()) do if player:FindFirstChild("PlayerGui") then local messageGui = Instance.new("ScreenGui") local messageLabel = Instance.new("TextLabel") messageGui.Parent = player.PlayerGui messageGui.Name = "MessageGui" messageLabel.Parent = messageGui messageLabel.Size = UDim2.new(1, 0, 0.1, 0) messageLabel.Position = UDim2.new(0, 0, 0.45, 0) messageLabel.BackgroundColor3 = Color3.new(1, 0, 0) messageLabel.Text = "HAHAHAHAHAHAHAHH YOUR IDIOT AHHAHAHA" messageLabel.Font = Enum.Font.GothamBold messageLabel.TextColor3 = Color3.new(1, 1, 1) messageLabel.TextScaled = true wait(5) messageGui:Destroy() end end end local function jumpHigh() local player = game.Players.LocalPlayer if player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.JumpPower = 200 end end local function loudScaryVoice() local sound = Instance.new("Sound") sound.Parent = workspace sound.SoundId = "rbxassetid://5475877279" -- Replace with a scary sound ID sound.Volume = 20 sound:Play() wait(5) sound:Destroy() end local function redLargeFire() local player = game.Players.LocalPlayer if player.Character then local fire = Instance.new("Fire") fire.Parent = player.Character:FindFirstChild("HumanoidRootPart") fire.Color = Color3.new(1, 0, 0) fire.SecondaryColor = Color3.new(1, 0.5, 0) fire.Size = 20 fire.Heat = 50 end end -- Button Actions JumpscareAllButton.MouseButton1Click:Connect(jumpscareAll) CoolkidSkyboxButton.MouseButton1Click:Connect(setCoolkidSkybox) MessageButton.MouseButton1Click:Connect(sendMessage) JumpHighButton.MouseButton1Click:Connect(jumpHigh) ScaryVoiceButton.MouseButton1Click:Connect(loudScaryVoice) LargeFireButton.MouseButton1Click:Connect(redLargeFire)