Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How would I make a sound reversed?

Asked by 3 years ago
Edited 3 years ago

I have a soundtrack for this game that has multiple areas that play different soundtracks, and this game has an upside down world and I was thinking of reversing the theme song for the main island.

So I need to reverse a sound using scripts, as Roblox has removed -1 pitch for some reason...

Simply just uploading 2 sounds would be too expensive, as I'm trying to create a game on a budget. Any help would be great, thanks.

I've heard that people have done this before, I myself just don't know how...

1 answer

Log in to vote
0
Answered by
Xapelize 2658 Moderation Voter Community Moderator
3 years ago

Roblox has removed -1 pitch due to moderation issues. People can easily bypass by making inappropriate sounds reversed and reverse it back to get an unmoderated inappropriate sound. So there's no way to make a perfect reversed sound, the only way is to make it cramped.

WAY 1:

local sound = script.Parent

sound:Play()

while wait(1) do
    for i = sound.TimeLength, 0, 0.1 do
        sound.TimePosition = i
    end
end

(This might not work, and it's very cramped, the quality might be bad)

WAY 2:

beg your friend to make a reversed sound lol

There is some websites that allows you to reverse the sound, it might get moderated, but it's an efficient way to make a reversed sound.

0
pro tip: 6 tags and a space before text will make small texts, and more, you can try different numbers tags Xapelize 2658 — 3y
0
^ is useless but ok Xapelize 2658 — 3y
0
thanks for the help but it doesn't work unfortunately Vexanonymous 6 — 3y
0
It is probably due to roblox antireverse script? I don't know. Your best bet is do way 2. Xapelize 2658 — 3y
Ad

Answer this question