of     1   

cyclone3260
#63725005Saturday, March 03, 2012 2:02 AM GMT

I cant really get this brick to move side to side. It goes to where's it suppose to and stays. I want it to keep moving side to side. Please Tell me what I did wrong with this script:p=game.Workspace.Water while true do for i=49,99 do p.CFrame=CFrame.new(-305, 160.6, i) wait(0.01) if p.CFrame=(-305, 160.6, 99) then do p.CFrame=CFrame.new(-305, 160.6,49) wait(2) end -------------------------------------------------------- For more information take this model and see for yourself: http://www.roblox.com/HELP-item?id=70137985
dirk29
#63726945Saturday, March 03, 2012 2:29 AM GMT

From the mistakes you made, you need more work on scripting.
CrasyTrex
#63727516Saturday, March 03, 2012 2:37 AM GMT

script:p=game.Workspace.Water while true do for i=49,99 do p.CFrame=CFrame.new(Vector3.new(-305, 160.6, i)) wait(0.01) if p.CFrame=CFrame.new(Vector3.new(-305, 160.6, 99)) then do p.CFrame=CFrame.new(Vector3.new(-305, 160.6,49)) wait(2) end end end --this was horrible code if you could even call it that if it doesn't work don't blame me!
DELTAzy
#63729374Saturday, March 03, 2012 3:06 AM GMT

Oh, hi there cyclone :P "What is to be loved when all is hated?"
BunnyBoy26
#63729646Saturday, March 03, 2012 3:10 AM GMT

b = workspace.Brick X = b.Position.X while true do for i=2,360,2 do b.Position = Vector3.new(5*math.sin(math.rad(i))+X,b.Position.Y,b.Position.Z) wait() end end
cyclone3260
#63760011Saturday, March 03, 2012 6:01 PM GMT

@Dirk29 I know I need help on scripting. Thanks for your help.. e.e
cyclone3260
#63760048Saturday, March 03, 2012 6:02 PM GMT

@CrasyTrex Thanks! :D
cyclone3260
#63760084Saturday, March 03, 2012 6:02 PM GMT

Sup DEltazy! Nice poem thar?
DELTAzy
#63773902Saturday, March 03, 2012 10:07 PM GMT

Indeed :3 "What is to be loved when all is hated?:

    of     1