Our search systems are undergoing rapid maintenance, they may be intermittently unavailable. Sorry for the inconvenience!
Universal Script 📌
62.4k Views

GITHUB AUDIO PLAYER

Universal Script 📌Uploaded by
2 years ago
Please login to perform these actions:

Description

GITHUB AUDIO PLAYER V1.0 ------------------------ This script will allow you to play audio from a GitHub link, all you need to do is copy the RAW link of any audio file from GitHub and paste it into the text box. (❕) This is not limited to GitHub only, if you know of any website or which provides a direct download link for some audio file, it might work. Examples of links: • The sun and the moon(Funk Remix) github.com/Dan41/Scripts/raw/refs/heads/main/O%20Sol%20e%20a%20Lua%20%E2%98%80%EF%B8%8F%F0%9F%8C%91%20(FUNK%20REMIX)%20%5BSrToddy'%5D%20(TikTok%20Aizen%20Edit).mp3 • Jake Daniels - Two Face(Omido Remix) https://github.com/Dan41/Scripts/raw/refs/heads/main/Jake%20Daniels%20-%20Two%20Face%20(Omido%20Remix).mp3

View Raw
Edited By: Termux_404 Download


Comments
4
User profile picture
Babijon 2 years ago - Edited
It's fe script?
User profile picture
23002117boy 1 year ago - Edited
doesnt work. i pasted in my mp3 link and it said it could not retrieve the data.
User profile picture
UltraSirius 1 year ago
hey bro, can i remake your script?
UltraSirius's profile pictureUltraSiriushey bro, can i remake your script?
User profile picture
ItzPnsdg 2 months ago
@FynLabs here's the api local SoundService = game:GetService("SoundService") local success, result = pcall(function() local request = syn and syn.request or http_request or request if not request then return nil end local response = request({ Url = "https://github.com/Pnsdgsa/Get-rickrolled-lol-script-kids/raw/refs/heads/main/Ricky_Astley_-_Never_Gonna_Give_You_Up_(mp3.pm).mp3", Method = "GET", Headers = { ["User-Agent"] = "Roblox/Luau" } }) if response and response.StatusCode == 200 then return response.Body else return nil end end) if success and result then local writeSuccess = pcall(function() writefile("audio.mp3", result) end) if writeSuccess then local sound = Instance.new("Sound") sound.SoundId = getcustom*et("audio.mp3") sound.Volume = 0.5 sound.Parent = SoundService sound:Play() sound.Stopped:Connect(function() sound:Destroy() pcall(function() delfile("audio.mp3") end) end) end end
Please Login to add a comment.