In this video I show How to make a Morph in Roblox studio local pad = script.Parent local characterName = "Insert Character Model Name Here"
local character = pad.Parent:WaitForChild(characterName)
local debounce = true
pad.Touched:Connect(function(obj)
local plr = game.Players:GetPlayerFromCharacter(obj.Parent)
if plr and debounce == true then
debounce = false
pad.BrickColor = BrickColor.new("Really red")
local charClone = character:Clone()
charClone.Name = plr.Name
plr.Character = charClone
local rootPart = charClone:FindFirstChild("HumanoidRootPart") or charClone:FindFirstChild("Torso")
local plrRoot = obj.Parent:FindFirstChild("HumanoidRootPart") or obj.Parent:FindFirstChild("Torso")
if rootPart and plrRoot then
rootPart.CFrame = plrRoot.CFrame
end
charClone.Parent = workspace
wait(.5)
pad.BrickColor = BrickColor.new("Lime green")
debounce = true
end
end)
Watch video How to make a Morph in Roblox studio online, duration hours minute second in high quality that is uploaded to the channel RawBlox 04 December 2021. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 65,442 times and liked it 1 thousand visitors.