You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
I want the “monster” to change into the player it touches -
What is the issue? Include screenshots / videos if possible!
Every time I run the script, I run into this error

"
3. What solutions have you tried so far? Did you look for solutions on the Creator Hub?
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
This script is in the HumanioidRootPart of the monster
function onTouched(hit)
if not hit or not hit.Parent then return end
local human = hit.Parent:findFirstChild("Humanoid")
if human and human:IsA("Humanoid") then
local player = game.Players:GetPlayerFromCharacter(hit.Parent)
local appearance = game.Players:GetCharacterAppearanceInfoAsync(player.UserId)
game.Workspace.DummyPlayer:WaitForChild("Humanoid"):ApplyDescription(game.Players:GetHumanoidDescriptionFromUserId(appearance))
end
end
script.Parent.Touched:connect(onTouched)
Any help is appreciated ^^