of     1   

Superfryx
#141295131Wednesday, July 23, 2014 6:43 PM GMT

How do I make a script that detects how long you have been touching a brick? I'm creating some AI monster, and he gets stuck inside bricks sometimes, I want to have it so if he is touching a part for 10 secons the part gets destroyed. How though? ~local Superfryx=game.Workspace.Awesomeness
HuntHello
#141295899Wednesday, July 23, 2014 6:51 PM GMT

Use something along the touch ended event -don't rely on it tho, your body touches it a lot in a short period of time
Superfryx
#141296562Wednesday, July 23, 2014 6:58 PM GMT

What do you mean body touches it for a short period of time? ~local Superfryx=game.Workspace.Awesomeness
InternetGuy
#141296676Wednesday, July 23, 2014 6:59 PM GMT

Use magnitude for more accurate results. http://wiki.roblox.com/index.php?title=Magnitude
Superfryx
#141296814Wednesday, July 23, 2014 7:01 PM GMT

@Internet How would I use magnitude? ~local Superfryx=game.Workspace.Awesomeness
InternetGuy
#141296914Wednesday, July 23, 2014 7:02 PM GMT

For example; while wait(.1) do if (player.Torso.Position - part.Position).magnitude <= 2 then print'player is within 2 studs of the center of the part' end end
Superfryx
#141299043Wednesday, July 23, 2014 7:28 PM GMT

@Internet Thanks, I will experiment with this. ~local Superfryx=game.Workspace.Awesomeness
HuntHello
#141299960Wednesday, July 23, 2014 7:38 PM GMT

hello internetguy, sometimes a brick is irregularly shaped, such as 5,2,85 or something like that
InternetGuy
#141300127Wednesday, July 23, 2014 7:40 PM GMT

Well, magnitude works from the exact center of the part.
Superfryx
#141300846Wednesday, July 23, 2014 7:48 PM GMT

My parts are small so i'm fine, I have not tried it yet, I have to make some major adjustments to my game for it to work. ~local Superfryx=game.Workspace.Awesomeness
Superfryx
#141304181Wednesday, July 23, 2014 8:23 PM GMT

How would I define part? There are several parts in my game. The ones the monster usually gets stuck on are called "WoodWall" ~local Superfryx=game.Workspace.Awesomeness
SiIentSins
#141304416Wednesday, July 23, 2014 8:26 PM GMT

Wouldn't you put the script in each part and then to refer to the part do script.Parent?
HuntHello
#141304513Wednesday, July 23, 2014 8:26 PM GMT

hello, just a quick note - if you use magnitude, standing up on the block may not register from just touching it from its side (torso dist)
HuntHello
#141304811Wednesday, July 23, 2014 8:29 PM GMT

or Touched event connected to all the bricks in the game with a iterator loop. reference the brick by script.Parent and define the part by instance.new and its properties
Superfryx
#141305248Wednesday, July 23, 2014 8:35 PM GMT

Instance.new? Isn't that for new parts? ~local Superfryx=game.Workspace.Awesomeness
HuntHello
#141306132Wednesday, July 23, 2014 8:45 PM GMT

defining is creating and setting a value for something - unless you used the wrong word? you reference a part with a script

    of     1