Hello everyone, i’m searching for this animation so i can use it for some scripts i want, been looking for this animation in the alexguirre.github but no success, does anyone here know’s what’s the name of this animation ? Thanks for your time.
Pretty sure that is a custom streamed prop
Have you tried all the tablet animations here?
I went ahead and tried all of those animations and none of them worked. I am sort of at a lost. It almost looks like a clipboard animation with the tablet in the picture.
Yes i tried it all, and i thought about that the " clipboard but no sucess, i will look for more clipboard animations
Maybe try some of hacking option animation with any flags?
I tried it, and no sucess, until i found it on a tablet resource in github, if anyone needs the animation, thanks for the help anyway, the code is here:
function startAnim()
Citizen.CreateThread(function()
RequestAnimDict("amb@world_human_seat_wall_tablet@female@base")
while not HasAnimDictLoaded("amb@world_human_seat_wall_tablet@female@base") do
Citizen.Wait(0)
end
attachObject()
TaskPlayAnim(GetPlayerPed(-1), "amb@world_human_seat_wall_tablet@female@base", "base" ,8.0, -8.0, -1, 50, 0, false, false, false)
end)
end
function attachObject()
tab = CreateObject(GetHashKey("prop_cs_tablet"), 0, 0, 0, true, true, true)
AttachEntityToEntity(tab, GetPlayerPed(-1), GetPedBoneIndex(GetPlayerPed(-1), 57005), 0.17, 0.10, -0.13, 20.0, 180.0, 180.0, true, true, false, true, 1, true)
end
function stopAnim()
StopAnimTask(GetPlayerPed(-1), "amb@world_human_seat_wall_tablet@female@base", "base" ,8.0, -8.0, -1, 50, 0, false, false, false)
DeleteEntity(tab)
end
This animation is holding phone.you can check gcphone resource to have it. Gcphone will have animation to take out the phone and standing like that
@Evolyck Have a look at this. I was looking for the same thing as you were until I found this this. This works very well for me. https://gist.github.com/FrazzIe/756b644f3d7ab5bf3f8c917793f8ac71
Credits to @Frazzle for this.