Requesting Help to Implement 'Saitama Battlegrounds' CameraSubject on Torso Without Jittery Effect!

why dont you just change the BodyPartTofollow in the players base camera script?

the base camera script is provided automatically by roblox when a player joins in their PlayerScripts

thats exactly what i did, but there is an annoying jittery effect when u rotate ur character

I think needs some effort from your side… I dont see where in the rules says “DevForum should fix what Im unable to do…”

and such things as this too, if u wanna be helpful go find a post that suits your experience

hmm when i tried it i didnt get that effect?, theres 2 lines that has local bodyparttofollow did you only change one?

devforum is literally a place for asking stuff and posting stuff, how are you gonna put effort in something if you already tried and fail?

try this, put everything in starterplayerscripts (the effect will show if you /e dance)
Test.rbxm (130.4 KB) (R6)

the jittery effect on the character doesnt occur when u rotate while standing, but if you walk while using shiftlock + rotating your character, you’ll notice a slight jitter effect on your character, also change head camerasubject to torso

what why?, and surprisingly it doesnt do that for me?

you need to closely look, send me the file to test

hm i already did that (looked closesly) there aint any jitter, the jitter prob could be because of the walking animation or some thing idk or it maybe because of scripts you could have added

there’s still jittering for me so idk

make sure to put a custom walking animation, as the default r6 walking animation doesnt have much movement so almost no jittering happens, as for the effect it seems like your character jitters/shakes/stutters noticably if you keep rotating your character, this happens on r15 too, if u still cant see it even with the custom animation then i cant help u see the problem

i found the solution to this, i made something similar for my star wars fighting game.

do not change the CameraSubject, rather, theres a property of a players humanoid called CameraOffset, and you change that depending on the local positional offset of the torso.

if not plr:GetAttribute('Cutscene') and char:FindFirstChild('Torso') and hum.Health > 0 then
	local offset = char.Torso.CFrame:ToObjectSpace(rootPart.CFrame).Position
	
	local camOffset = Vector3.new(-offset.X, -offset.Y, -offset.Z)
	
	ts:Create(hum, TweenInfo.new(.055, Enum.EasingStyle.Sine, Enum.EasingDirection.In), {CameraOffset = camOffset + plr.OffsetVec.Value}):Play()
else
	ts:Create(hum, TweenInfo.new(.055, Enum.EasingStyle.Sine, Enum.EasingDirection.In), {CameraOffset = Vector3.zero}):Play()
end

snippet of code from my game to handle the camera movement (i use r6 so if you’re doing r15 do LowerTorso or UpperTorso?) obviously some minor variables should be changed to work for other ppls games but the function is there if anyone needs it.

6 Likes

Thank you, This works perfectly, Although it doesn’t have as much shaking as changing it in playermodule, its still good since it wont bother the player from too much movement effect, there is also no noticable stutter effect, only if you changed the “OffsetVec” to around 2, 0, 0 the stutter starts to happen if you want a shiftlock kind of effect but i dont need to change it anyway

i had that issue as well until i started using tweens to ease it in, if its still bad you can always up the time it takes to tween the camera

if you know the game “AUT” when you move your camera moves with the character smoothly, if u know how to replicate that then pls tell me, thank you for your previous solution!

sorry, i’ven’t played that game, i’ve only dabbled in strongest battlegrounds :frowning:

1 Like

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