You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
I want a script that can tween smothly the HRP to another point. -
What is the issue? Include screenshots / videos if possible!
The tween work, but is exrtemly buggy and the character keeps bouncing up and down. -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I still didn’t find nothing, except some fixes for the dictionary bug.
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
local goal= {CFrame = game.Workspace.TweenedPositionPart.CFrame}
local tweenService = game:GetService("TweenService")
local tweeninfo =TweenInfo.new(
2.5,
Enum.EasingStyle.Sine,
Enum.EasingDirection.Out,
0,
false,
0)
local tween2 = tweenService:Create(script.Parent.HumanoidRootPart, tweeninfo, goal)
tween2:Play()
Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.