you might now how to but I new to the ROBLOX Studio and I was wonder is there a way to use a script to make the brick to not fall?
Next time, make sure to include some code in your questions, and read the rules of the site.
Insert a script into the part.
-To make it NOT fall (Anchored)
part = script.Parent -- Variable part.Anchored = true -- This line sets the part property "Anchored" to true (checked)
-To make it fall (Not Anchored)
part = script.Parent -- Variable part.Anchored = false -- This line sets the part property "Anchored" to false (unchecked)
You don't need a script for this
just change the part's Anchored property to true or false to have it be fixed/fall