djboy
|
  |
| Joined: 16 Mar 2008 |
| Total Posts: 794 |
|
|
| 02 Apr 2014 02:49 PM |
Im trying to make this block thats welded Rise up and its not working. and i do not know why. Im doing something wrong on line 4. Please help me
wait(0.1) me = script.Parent.Parent for i = 1, 20 do me.RiseWeld.C1 = me.RiseWeld.C1 + (script.Parent.CFrame.new(0, 1, 0)) wait(0.1) print("YOLO") end |
|
|
| Report Abuse |
|
|
RoflBread
|
  |
| Joined: 18 Jun 2009 |
| Total Posts: 3803 |
|
|
| 02 Apr 2014 02:50 PM |
script.Parent.CFrame.new(0, 1, 0)
should just be reduced to
CFrame.new(0,1,0) |
|
|
| Report Abuse |
|
|
djboy
|
  |
| Joined: 16 Mar 2008 |
| Total Posts: 794 |
|
| |
|
RoflBread
|
  |
| Joined: 18 Jun 2009 |
| Total Posts: 3803 |
|
|
| 02 Apr 2014 02:54 PM |
me.RiseWeld.C1 = me.RiseWeld.C1 + CFrame.New(0,1,0)
That doesn't work? |
|
|
| Report Abuse |
|
|
djboy
|
  |
| Joined: 16 Mar 2008 |
| Total Posts: 794 |
|
| |
|
Goulstem
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 7177 |
|
|
| 02 Apr 2014 02:57 PM |
wait(0.1) me = script.Parent.Parent for i = 1, 20, .1 do me.RiseWeld.C1 = CFrame.new(me.RiseWeld.C1.CFrame+CFrame.new(0,i,0)) wait(0.1) print("YOLO") end |
|
|
| Report Abuse |
|
|
djboy
|
  |
| Joined: 16 Mar 2008 |
| Total Posts: 794 |
|
|
| 02 Apr 2014 03:03 PM |
| wont work. il ltry again later |
|
|
| Report Abuse |
|
|
robotmega
|
  |
| Joined: 16 May 2009 |
| Total Posts: 14084 |
|
|
| 02 Apr 2014 03:23 PM |
wait(0.1) me = script.Parent.Parent for i = 1, 20, .1 do me.RiseWeld.C1 = CFrame.new(0,i,0) wait(0.1) print("YOLO") end
|
|
|
| Report Abuse |
|
|