The server kinda bugs out the character went I try to vault an object, which in weird because I had to fix this on the client’s end by shifting it over to the server
I’m fine with it since the client to client interactions work fine and the server correctly identifies the position of body parts
I just want to know if there’s another way to make it not do this
–Client Checks if mantle is possible then fires server
local rs = game:GetService("ReplicatedStorage")
local MantleEvent = rs.Mantle
local TS = game:GetService("TweenService")
local mantleinfo = TweenInfo.new(0.2,Enum.EasingStyle.Quad,Enum.EasingDirection.Out,0,false,0)
local overinfo = TweenInfo.new(0.25,Enum.EasingStyle.Quad,Enum.EasingDirection.Out,0,false,0)
MantleEvent.OnServerEvent:Connect(function(player,HRP,pos,over)
local info = mantleinfo
if not over then
info = overinfo
end
HRP.Anchored = true
local tween = TS:Create(HRP,info,{Position = pos}):Play()
task.wait(info.Time)
HRP.Anchored = false
end)