Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

A brick not falling to the ground?

Asked by 7 years ago

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?

2 answers

Log in to vote
0
Answered by 7 years ago

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)
Ad
Log in to vote
0
Answered by 7 years ago

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

Answer this question