corto713
|
  |
| Joined: 12 Dec 2009 |
| Total Posts: 962 |
|
|
| 05 Sep 2012 10:57 PM |
I would of thought that this would of worked but it moved once
p = Instance.new("Part") p.Parent = Workspace p.Anchored = true while true do p.Position = p.Position + Vector3.new(1, 1, 1) wait(.25) break end
Or something along those lines... |
|
|
| Report Abuse |
|
|
crusada91
|
  |
| Joined: 04 Sep 2010 |
| Total Posts: 684 |
|
|
| 05 Sep 2012 11:00 PM |
a loop isn't that ^^
break is for the for loop
for i = 1, 10 do if i == 5 then break end end
^^EXAMPLE |
|
|
| Report Abuse |
|
|
corto713
|
  |
| Joined: 12 Dec 2009 |
| Total Posts: 962 |
|
|
| 05 Sep 2012 11:03 PM |
| Wow I'm stupid! I forgot about the for loop! |
|
|
| Report Abuse |
|
|
crusada91
|
  |
| Joined: 04 Sep 2010 |
| Total Posts: 684 |
|
| |
|
corto713
|
  |
| Joined: 12 Dec 2009 |
| Total Posts: 962 |
|
|
| 05 Sep 2012 11:32 PM |
| But I always have good memory it's just I forgot about that which is what I was trying to re-figure out... |
|
|
| Report Abuse |
|
|
pugzy
|
  |
| Joined: 16 Aug 2007 |
| Total Posts: 11957 |
|
|
| 06 Sep 2012 12:43 AM |
TimeToBreak = NumberinSeconds StartTime = tick() while true do wait() NewTime = tick() if((NewTime - StartTime) == TimeToBreak) do break end end
|
|
|
| Report Abuse |
|
|
pugzy
|
  |
| Joined: 16 Aug 2007 |
| Total Posts: 11957 |
|
|
| 06 Sep 2012 12:45 AM |
| if((NewTime - StartTime) == TimeToBreak) then * |
|
|
| Report Abuse |
|
|