I want to make a character like rain world
here is vid:
(52) Finally… a fair fight. - YouTube
anyways, I would like them to be able to have arms crawl and stand up to make themself taller. (I explained this horribly) I need them to kinda have active ragdoll. I have no idea how to do this.
Use a custom startercharacter paired with a custom character controller.
These resources could help you:
I have something going but THIS FRICKIN ALIGN POSITION DOESN’T WANT TO WORK.
code:
local Character = script.Parent
local Humanoid = Character:FindFirstChildWhichIsA("Humanoid")
local Torso = Character:WaitForChild("UpperTorso",3)
if Character.Name == "StarterCharacterScripts" then
return
end
local TweenService = game:GetService("TweenService")
local Standing = false
local AlignPos = Instance.new("AlignPosition",Character.UpperTorso)
AlignPos.Attachment1 = Humanoid.RootPart:FindFirstChildWhichIsA("Attachment")
AlignPos.Attachment0 = Torso:FindFirstChildWhichIsA("Attachment")
local BPOffset
Humanoid.Changed:Connect(function(changed)
if Humanoid.MoveDirection ~= Vector3.new(0,0,0) and Standing == true then
Standing = false
elseif Standing == false then
Standing = true
end
end)
while true do
wait()
end
after like 3 seconds it stops working
You should probably make a new post for this.
well then guess what. I’m going to have to wait another 10 minutes to get someone’s attention.
Also, what is while true do wait() doing? Thats just an empty useless loop.
AlignPosition is not repeating.
I had it there for something else
dw, ill go to your new post to help you if you make one :D
new post:
Trying to make a part slowly follow another - Help and Feedback / Scripting Support - Developer Forum | Roblox
also it won’t let me delete this one
Yeah you can’t really, but you got your solution, just mark my original post as solution.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.