GlobalWind Question

How would I tween GlobalWind, if possible?

Just how you would any other value.

local ts = game:GetService('TweenService')

local properties = {}
properties.GlobalWind = Vector3.new(100,100,100)

local info = TweenInfo.new(10)

local windTween = ts:Create(game.Workspace,info,properties)
windTween:Play()

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.