What do you want to achieve?
Hello, i want to tween a model on the client (i use a modulescript to tween model the model) and a require(themodulescript) in the script but it don’t work when i do it in a local script.
(I can change the system other than a modulescript if you find out another way to tween the model on the client)
What is the issue?
I don’t know how to do it.
What solutions have you tried so far?
I looked on forums and tried to do it myself.
local TweenService = game:GetService("TweenService")
local PrimaryPartHere = script.Parent.PrimaryPart -- // make sure script is in model, not part
TweenService:Create(PrimartyPartHere, TweenInfo.new(1), {CFrame = CFrame.new(0, 3, 0)}:Play() -- TweenInfo.new(1) means 1 second, it will tween CFrame to 0, 3, 0.