chillfity
(chillfity)
June 5, 2022, 10:03pm
#1
How do I make a tool move smooth, Kinda delayed from the camera?
Like this video: Granny Chapter 1 Full Gameplay android - YouTube
(Skip it to 23:07 and look how the tool moves in the hands of the player)
I tried everything, and finally decided to post on the forums
How would I go about doing this?
sshjack
(sshjack)
June 6, 2022, 1:14am
#2
May I ask what you have so far?
chillfity
(chillfity)
June 6, 2022, 1:19am
#3
Well, I tried to tweak the script for camera smoothness I got out of the toolbox, but it didn’t really work, And I am not used to tweeting parts that much, I’m not really sure how to go about doing this.
What you’re looking for is like gun sway. There are multiple posts about this on the devforum already. A lot of people use springs to achieve this affect
chillfity
(chillfity)
June 6, 2022, 1:23am
#5
Is there a tutorial on this anywhere? I literally can’t find any
Here’s a post I found about it
a lot of games use spring to accomplish gunsway, but you can also do it using sine waves:tm: and lerping between the last camera cframe to the current one, here’s a code snippet, comes with idle sway as a bonus just because it’s easier for me to keep it there than forking it out
local lastCF = cam.CFrame
local sway = CFrame.new()
local sinValue = 0
local lerp = 0
game:GetService("RunService").RenderStepped:Connect(function(dt)
local deltaRatio = deltaFramerate / (1 / dt) --//deltaFramerate is …