Answers for "How long can I finish head first java"

C#
1

How do i destroy a prefab without the error?

//You could try making a copy

public GameObject example;


GameObject exampleCopy = example
Instantiate(exampleCopy, //wherever you want)
Destroy(exampleCopy)
Posted by: Guest on February-16-2020
0

How do i make a part transparent?

wait(0)
game.Workspace.Part.Transparency = 1
Posted by: Guest on April-14-2020

C# Answers by Framework

Browse Popular Code Answers by Language