RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a The Vampire Diaries Themed Loading Screen with play button"
-- local script (StarterGUI) local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui", player.PlayerGui) local background = Instance.new("ImageLabel", screenGui) background.Image = "rbxassetid://your_image_asset_id_here" -- Replace with The Vampire Diaries themed image asset id background.Size = UDim2.new(1, 0, 1, 0) background.BackgroundTransparency = 1 local titleLabel = Instance.new("TextLabel", background) titleLabel.Text = "The Vampire Diaries" titleLabel.Font = Enum.Font.Fantasy titleLabel.TextSize = 48 titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) titleLabel.BackgroundTransparency = 1 titleLabel.Position = UDim2.new(0.5, 0, 0.25, 0) titleLabel.AnchorPoint = Vector2.new(0.5, 0.5) local playButton = Instance.new("TextButton", background) playButton.Text = "Play" playButton.Font = Enum.Font.Fantasy playButton.TextSize = 36 playButton.TextColor3 = Color3.fromRGB(255, 255, 255) playButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0) playButton.BackgroundTransparency = 0.5 playButton.Position = UDim2.new(0.5, 0, 0.5, 0) playButton.AnchorPoint = Vector2.new(0.5, 0.5) playButton.Size = UDim2.new(0.2, 0, 0.1, 0) local playButtonUICorner = Instance.new("UICorner", playButton) playButtonUICorner.CornerRadius = UDim.new(0, 5) playButton.MouseButton1Click:Connect(function() -- Add your game logic here to start the game end)