Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 635 Bytes

File metadata and controls

17 lines (14 loc) · 635 Bytes

ReplicatedTweening

A roblox luau system that allows for replicated creation and playback of tweens from server-sided contexts.

SETUP:

Download Package.rbxm and open it in studio Parent each item to where it belongs

Example Usage:

local TweenService = require(game:GetService("ReplicatedStorage").ReplicatedTweening)

local Tween = TweenService:Create(workspace.ExampleTweenPart, TweenInfo.new(0.5, Enum.EasingStyle.Sine), { Transparency = 0 })
Tween:Play()

task.wait(0.5)

local Tween = TweenService:Create(workspace.ExampleTweenPart, TweenInfo.new(0.5, Enum.EasingStyle.Sine), { Transparency = 1 })
Tween:Play()