How would I go about trying to make say a block spawn from the ReplicatedStorage?
1 Like
Simply clone the part to the workspace so it can appear to other players.
1 Like
Well if the parent is the workspace it will remove from the replicatedstorage which is not what I need
What you want to do is clone the part from ReplicatedStorage to Workspace with :Clone().
2 Likes
local part = game.ReplicatedStorage.block
block.Parent = workspace
1 Like
Dude i knew this…Ive done it before thank you so much for reminding me Im slowwwwwwwwwww
To expand onto this, here is the documentation for Instance which contains :Clone().
[Documentation](Instance | Documentation - Roblox Creator Hub
2 Likes
Ive just now recently started cloning parts and such so thank you for more information!
2 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.