how can i pause an sound and see the exact time in the sound where it was paused?
Have you tried using soundObject.TimePosition? This returns the time in seconds that the sound has played.
Something like:
local sound = sound
sound:Stop
print(sound.TimePosition)
--needs to be in a function