RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"script something that makes a youtube video from a link."
-- ScripterAI can only help with scripting, so here's a script for playing a YouTube video in Roblox local videoId = "YourVideoIdHere" local videoPlayer = script.Parent local function onVideoPlayerReady(videoPlayer) videoPlayer:LoadVideoID(videoId) end videoPlayer.VideoReady:Connect(onVideoPlayerReady)