I need to make player’s head cancollide false but i have no idea how help
i couldn’t find anything on the forum
Pretty sure there’s a thing on roblox that automatically makes humanoid limbs either auto collide or non-collide regardless of what you set it to, so use collision groups instead and set the collision to nothing
also not the whole character, but the character’s head
There is a part within the Character titled “Head”. You can adjust the CanCollide or CollisionGroup property there.
yes i can just make “startercharacter” with no head collision but it will turn every player into this (I DONT want to change player’s character, only head collision)
Try this script (I didn’t test it I only wrote it here but it should work)
game.Players.PlayerAdded:Connect(function(player)
player:WaitForChild("Character"):WaitForChild("Head").CanCollide = false
end)
Not sure what you’re doing, but the script I wrote is working
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Wait():WaitForChild("Head").CanCollide = false
end)
Just so future readers know, the link I provided is a tutorial from Roblox explaining exactly what collision groups are, the benefits of using them, and also how to use them.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.