
Gui
Universal Script πUploaded byDescription
--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "Tuber9CreepyKiddGUI" gui.ResetOnSpawn = false -- Main Frame local mainFrame = Instance.new("Frame", gui) mainFrame.Size = UDim2.new(0, 180, 0, 340) mainFrame.Position = UDim2.new(0, 10, 0, 10) mainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) mainFrame.BorderSizePixel = 2 mainFrame.Active = true mainFrame.Draggable = true -- Title local title = Instance.new("TextLabel", mainFrame) title.Size = UDim2.new(1, 0, 0, 30) title.BackgroundColor3 = Color3.fromRGB(50, 0, 0) title.TextColor3 = Color3.new(1, 0, 0) title.Text = "tuber9creepykidd GUI" title.Font = Enum.Font.SciFi title.TextScaled = true -- Button Generator local function createButton(text, order, callback) local button = Instance.new("TextButton") button.Size = UDim2.new(1, -10, 0, 30) button.Position = UDim2.new(0, 5, 0, 30 + (order - 1) * 35) button.BackgroundColor3 = Color3.fromRGB(0, 0, 0) button.TextColor3 = Color3.fromRGB(255, 0, 0) button.Font = Enum.Font.GothamBlack button.TextSize = 14 button.Text = text button.Parent = mainFrame button.MouseButton1Click:Connect(callback) end -- Sound helper local function playJumpscareSound() local sound = Instance.new("Sound", gui) sound.SoundId = "rbxassetid://6018028320" sound.Volume = 2 sound:Play() game:GetService("Debris"):AddItem(sound, 4) end -- DECAL SPAM createButton("Decal Spam", 1, function() for _, part in pairs(workspace:GetDescendants()) do if part:IsA("BasePart") then local decal = Instance.new("Decal", part) decal.Texture = "rbxassetid://118380115833011" end end end) -- PARTICLES createButton("Particles", 2, function() for _, plr in pairs(game.Players:GetPlayers()) do if plr.Character then for _, part in pairs(plr.Character:GetDescendants()) do if part:IsA("BasePart") then local emitter = Instance.new("ParticleEmitter", part) emitter.Texture = "rbxassetid://118380115833011" emitter.Rate = 20 end end end end end) -- JUMPSCARE 1 createButton("Jumpscare", 3, function() local img = Instance.new("ImageLabel", gui) img.Size = UDim2.new(1, 0, 1, 0) img.Position = UDim2.new(0, 0, 0, 0) img.Image = "rbxassetid://100160207727615" img.BackgroundTransparency = 1 img.ZIndex = 999 img.Parent = gui playJumpscareSound() task.delay(3, function() if img then img:Destroy() end end) end) -- JUMPSCARE 2 createButton("Jumpscare 2", 4, function() local img = Instance.new("ImageLabel", gui) img.Size = UDim2.new(1, 0, 1, 0) img.Position = UDim2.new(0, 0, 0, 0) img.Image = "rbxassetid://130741690434827" img.BackgroundTransparency = 1 img.ZIndex = 999 img.Parent = gui playJumpscareSound() task.delay(3, function() if img then img:Destroy() end end) end) -- HINT createButton("Hint", 5, function() local hint = Instance.new("Hint", game.Workspace) hint.Text = "team tuber9creepykidd join today!1!1!1!1!!!!" end) -- MESSAGE createButton("Message", 6, function() local message = Instance.new("Message", game.Workspace) message.Text = "tuber9creepykidd haxered this gaem!!!!!111!!!" end) -- SKYBOX createButton("Skybox", 7, function() local lighting = game:GetService("Lighting") local sky = Instance.new("Sky", lighting) sky.SkyboxBk = "rbxassetid://118380115833011" sky.SkyboxDn = "rbxassetid://118380115833011" sky.SkyboxFt = "rbx














