how do i make the arms move? Is there Anything i can do to make the arms move?
You can animate them regularly.
Suggestion. Will you add IK for R6
Unlikely, since resources for that already exist.
How to customize?!
Check the documentation for basic customization.
Thanks! This will help a lot!!
I would recommend not having to pass in the parameter “Player”, as you only need a Character. I had to modify the module just for this, because in the module, it seems you don’t really need the Player at all, and you only need the Character.
This would be beneficial in many ways.
Where could I find resources for r6 footplanting?
I don’t know. This resource can, however, be modified for R6 if you can understand the math.
Is there any way to make this compatible with R6?
I don’t know where to find them, but I know they exist.
Yes, but you need to understand the math behind IK in order to.
its bug i guess when i play when 2 person the leg is gone crazy
Can you show me a video of this? Feel free to upload it to streamable or YouTube so that you don’t worry about file size.
idk what just happened the leg was folding infront looks scary so here Desktop 2021.07.08 - 12.56.50.01
Interesting. Did you change any settings?
nope i didnt change any single things
Does it apply in-engine? And, did it only happen once?
I don’t know the name of this behavior but this is the reason why that happens
Putting tuples in a tuple takes only the first element of every tuple except the last tuple where it uses the whole thing, for example
local function returnTuple()
return 1, 2, 3, 4, 5
end
print(returnTuple(), returnTuple(), returnTuple())
--prints : 1 1 1 2 3 4 5
On line 175 of the IK module there is this line
RaycastParameters.FilterDescendantsInstances = {unpack(Mod),unpack(ParamBlacklist)}
Where mod is the list of characters
This results in only one of the characters animating properly, as the rest have their raycasts hit themselves instead of the ground.
local tableOne = {1,2,3}
local tableTwo = {4,5}
print({table.unpack(tableOne), table.unpack(tableTwo)})
--prints {1 4 5}