of     1   

LimitedLogic
#228366823Sunday, December 03, 2017 6:15 AM GMT

Not sure how to do it though.
Soybeen
#228371421Sunday, December 03, 2017 9:24 AM GMT

function lerp(a, b, t) return a * (1-t) + (b*t) end local minPitch,maxPitch = 0.5,5 gui.Changed:connect(function() sound.Pitch = lerp(minPitch,maxPitch,gui.AbsoluteWindowSize.X/gui.CanvasPosition.X) -- switch X or Y depending on your scrollbar end)

    of     1