local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local gui = Instance.new("ScreenGui", player.PlayerGui) gui.Name = "19anzGui" -- Create Main Frame local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 250, 0, 300) frame.Position = UDim2.new(0.1, 0, 0.1, 0) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Black background frame.BorderColor3 = Color3.fromRGB(255, 255, 0) -- Yellow outline frame.Draggable = true frame.Active = true -- Scrolling Frame local scroll = Instance.new("ScrollingFrame", frame) scroll.Size = UDim2.new(1, 0, 1, -30) scroll.Position = UDim2.new(0, 0, 0.1, 0) scroll.CanvasSize = UDim2.new(0, 0, 2, 0) scroll.ScrollBarThickness = 5 -- Title local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0.1, 0) title.Text = "19anz Gui v1" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.BackgroundTransparency = 1 title.TextScaled = true -- Subtitle local subtitle = Instance.new("TextLabel", frame) subtitle.Size = UDim2.new(1, 0, 0.05, 0) subtitle.Position = UDim2.new(0, 0, 0.1, 0) subtitle.Text = "By j0kKidd aka 19anz" subtitle.TextColor3 = Color3.fromRGB(255, 255, 255) subtitle.BackgroundTransparency = 1 subtitle.TextScaled = true -- Function to create buttons local function createButton(text, pos, callback) local btn = Instance.new("TextButton", scroll) btn.Size = UDim2.new(1, 0, 0.1, 0) btn.Position = UDim2.new(0, 0, pos, 0) btn.Text = text btn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.MouseButton1Click:Connect(callback) end -- Skybox Changer createButton("Change Skybox", 0.2, function() if workspace:FindFirstChild("Terrain") then local sky = Instance.new("Sky", game.Lighting) sky.SkyboxBk = "rbxassetid://157755295" sky.SkyboxDn = "rbxassetid://157755295" sky.SkyboxFt = "rbxassetid://157755295" sky.SkyboxLf = "rbxassetid://157755295" sky.SkyboxRt = "rbxassetid://157755295" sky.SkyboxUp = "rbxassetid://157755295" end end) -- Decal Spam createButton("Decal Spam", 0.3, function() for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("Decal") then obj.Texture = "rbxassetid://157755295" end end end) -- Jumpscare createButton("Jumpscare", 0.4, function() local jumpscare = Instance.new("Sound", workspace) jumpscare.SoundId = "rbxassetid://157755295" jumpscare.Volume = 10 jumpscare:Play() end) -- Text Above Head createButton("Set Name to '19anz'", 0.5, function() local billboard = Instance.new("BillboardGui", character.Head) billboard.Size = UDim2.new(3, 0, 1, 0) billboard.StudsOffset = Vector3.new(0, 2, 0) local textLabel = Instance.new("TextLabel", billboard) textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.Text = "19anz" textLabel.TextColor3 = Color3.fromRGB(255, 255, 0) textLabel.BackgroundTransparency = 1 textLabel.TextScaled = true end) -- Music Player createButton("Play Music", 0.6, function() local music = Instance.new("Sound", workspace) music.SoundId = "rbxassetid://104656651573737" music.Volume = 5 music.Looped = true music:Play() end)