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

How would I make a simple lava brick? [closed]

Asked by
Relatch 550 Moderation Voter
9 years ago

I need a lava for my script test, and please give a good explanation, because I don't know much, and wouldn't understand.

0
There is also an example on the Wiki, http://wiki.roblox.com/index.php?title=Lesson:Lesson2 Diitto 230 — 9y

Closed as Not Constructive by Goulstem, Lacryma, and Redbullusa

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
2
Answered by 9 years ago

You are suppose to already to not request a script but, give a script that has errors in to so that other people can figure out what is wrong with it, but since the script is so easy I will give it to you.

script.Parent.Touched:connect(function(part)
    if part.Parent:FindFirstChild("Humanoid")then
        part.Parent:BreakJoints()
    end
end)

When the part is touched, it will try to find a humanoid, if there is a humanoid then it will break it's joints.

0
Very helpful, thanks for the help. Relatch 550 — 9y
Ad