of     1   

greenjelly
#585998Wednesday, March 12, 2008 11:35 AM GMT

1) A troop that moves to where ever you click with a tool(500 tix) 2) A tool that makes the troop move when you click(450tix) 3) A leaderboard that counts times you killed a troop or another player(250Bux) 4) A button when you step on it, it spawns a troop on the brick you touched(300Bux)
AgentBloxxer
#586038Wednesday, March 12, 2008 11:54 AM GMT

I can probably make 4. Instructions:Put the troop you want and place it with the button right on top of it. Then just place this script in and call the troop "Troop" nothing else and make the t capitolized. Script: model = script.Parent.Troop b = model:clone() model:remove() function onTouched(hit) b:clone().Parent = script.Parent b:clone.Position = script.Parent.Position --PS:Might make two................ end script.Parent.Touched:connect(onTouched)
greenjelly
#587327Wednesday, March 12, 2008 9:11 PM GMT

it didnt work but I found uberts and ill just use that
greenjelly
#587888Wednesday, March 12, 2008 10:58 PM GMT

the money ofer is still up.
darkwyvern
#587976Wednesday, March 12, 2008 11:12 PM GMT

hes just missing () after clone on a line.
AgentBloxxer
#588006Wednesday, March 12, 2008 11:17 PM GMT

MAJOR fixes: model = script.Parent.Troop b = model:clone() model:remove() function onTouched(hit) bc = b:clone() bc.Parent = script.Parent bc.Position = script.Parent.blockname.Position end script.Parent.Touched:connect(onTouched)
brOofrange
Top 100 Poster
#588112Wednesday, March 12, 2008 11:36 PM GMT

Zomg 4. --------------------------------- model = script.Parent.Troop function onTouched(hit) model:clone().Parent = game.Workspace model.Torso.CFrame = CFrame.new(X,Y,Z) end script.Parent.Touched:connect(onTouched) ---------------------------------------------------- ¿-BROofRANGE-¿
greenjelly
#588344Thursday, March 13, 2008 12:15 AM GMT

ima still using uberts because I need it to have money (forgot that part)
greenjelly
#588356Thursday, March 13, 2008 12:18 AM GMT

how about we move on to the troop moving tool /.\
name4
#588440Thursday, March 13, 2008 12:33 AM GMT

Try this!:D bin=script.Parent function OnButton1Down(mouse) game.Workspace.Troop.Humanoid:MoveTo(mouse.Target.Position,game.Workspace.Base) end function OnSelected(mouse) print("Selected") end bin.Selected:connect(OnSelected) bin.Button1Down:connect(OnButton1Down) ----Credit to name1 if that works,Youll make the troop walk wherever you click!:D
narutofan1082
#588698Thursday, March 13, 2008 1:20 AM GMT

would u happen 2 know the script 4 force field?i realy need help with scripting

    of     1