of     1   

Aelerity
#162097166Wednesday, May 13, 2015 11:25 PM GMT

How do you make a script where when you touch a block the size of another changes? function touch() wait (1) game.workspace.GETrekt.Size = ("1, 11, 11") end script.Parent.Touched:connect(touch)
Semaphorism
#162097597Wednesday, May 13, 2015 11:31 PM GMT

game.workspace.GETrekt.Size = Vector3.new(1, 11, 11)
Semaphorism
#162097630Wednesday, May 13, 2015 11:32 PM GMT

Correction: game.Workspace.GETrekt.Size = Vector3.new(1, 11, 11)
Aelerity
#162098274Wednesday, May 13, 2015 11:42 PM GMT

function touch() wait (1) game.workspace.GETrekt.Size = Vector3.new(1, 11, 11) end script.Parent.Touched:connect(touch) so i got this how do i make it so it only activates when its a person who touches it>
Aelerity
#162104210Thursday, May 14, 2015 1:15 AM GMT

dgadfgdf
APKB
#162105043Thursday, May 14, 2015 1:28 AM GMT

Want to team up? I can script and you build. My youtube: https://www.youtube.com/user/SecondaryZero/videos
APKB
#162106694Thursday, May 14, 2015 1:52 AM GMT

function touch(a) if a.Parent:findFirstChild("humanoid") then wait (1) game.workspace.GETrekt.Size = Vector3.new(1, 11, 11) end end script.Parent.Touched:connect(touch)
Aelerity
#162107608Thursday, May 14, 2015 2:05 AM GMT

What r u planning on making? Also thanks.
APKB
#162110856Thursday, May 14, 2015 2:52 AM GMT

I plan to make similar game to Hunter Life V3 but with quest and more stuff you can do and different layout.

    of     1