How to clone a model and place it in front of the player in Roblox Studio

Описание к видео How to clone a model and place it in front of the player in Roblox Studio

Like and subscribe if you want to see more content like this! If you have any suggestions, comment them so I can see them and maybe make a video about it. I hope you enjoyed! Comment what you need to use this for, if you'd like.

Also here is the simplified version of the script shown in the video:
game:GetService("Players").PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
local humanoidRootPart = character:WaitForChild("HumanoidRootPart")

repeat wait(5)
local model = game:GetService("ServerStorage"):WaitForChild("Model"):Clone()
model.Parent = workspace
model:SetPrimaryPartCFrame(humanoidRootPart.CFrame * CFrame.new(0,-2.5,-12)) --Adjustable values
until false
end)
end)

Комментарии

Информация по комментариям в разработке