generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
   
ROBLOX Forum » Game Creation and Development » Scripting Helpers
Home Search
 

[ Content Deleted ]

Previous Thread :: Next Thread 
kibaclone360 is not online. kibaclone360
Joined: 07 Sep 2008
Total Posts: 4033
01 Aug 2009 09:20 PM
If any of you have read the book Programming in Lua, would you recemend it to me as a newcommer to Lua?
Report Abuse
kibaclone360 is not online. kibaclone360
Joined: 07 Sep 2008
Total Posts: 4033
01 Aug 2009 09:53 PM
Bump?
Report Abuse
FirstBucket is not online. FirstBucket
Joined: 31 Jul 2009
Total Posts: 92
01 Aug 2009 09:54 PM
No, I would recomend Lua.org
Report Abuse
Mancon123 is not online. Mancon123
Joined: 13 Dec 2008
Total Posts: 13961
01 Aug 2009 10:04 PM
Nope I got it when I wanted to learn but it didnt help me at all. But now I know how to script basics. (not form the book.)
Report Abuse
Ozzypig is not online. Ozzypig
Joined: 27 Mar 2008
Total Posts: 4906
01 Aug 2009 10:31 PM
The book Programming in Lua is not for beginners.

I reccomend Extended Prelude to Programming: Concepts and Design by Stewart Venit.
Report Abuse
phillip417 is not online. phillip417
Joined: 22 Jul 2008
Total Posts: 333
01 Aug 2009 10:34 PM
take a script and look at it carefuly and figure it out that how i learn
Report Abuse
Ozzypig is not online. Ozzypig
Joined: 27 Mar 2008
Total Posts: 4906
01 Aug 2009 10:37 PM
^ Bad Way ^
Report Abuse
phillip417 is not online. phillip417
Joined: 22 Jul 2008
Total Posts: 333
01 Aug 2009 10:42 PM
well look at this


e=Instance.new("Model") e.Parent=game.Workspace e.Name="Tree" p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-6, 7.99999952, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(1, 2.4000001, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-5.5, 10.3999996, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 0.400000006, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Plate p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-4, 6.59999943, 66, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-2, 12.7999992, 66, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(1, 2.4000001, 1) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-0.5, 12.7999992, 62.5, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(1, 2.4000001, 1) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-3.5, 12.7999992, 65.5, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 4) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-2, 15.1999989, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(1, 2.4000001, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-3.5, 15.1999989, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 0.400000006, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Plate p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(0, 6.59999943, 62, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 0.400000006, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Plate p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-4, 6.59999943, 62, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 0.400000006, 10) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Plate p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-2, 6.60000038, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 6, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.486275, 0.360784, 0.27451) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-2, 3.4000001, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 10) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-2, 8, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 6) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-4, 7.99999952, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(4, 0.400000006, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Plate p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-5, 6.59999943, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(1, 2.4000001, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-0.5, 15.1999989, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-2, 17.5999985, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 8) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-2, 10.3999996, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 4) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-4, 10.3999996, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(1, 2.4000001, 1) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-3.5, 12.7999992, 62.5, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(1, 2.4000001, 1) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-0.5, 10.3999996, 61.5, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(6, 2.4000001, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-2, 12.7999992, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-2, 12.7999992, 62, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 6) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(0, 7.99999952, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(1, 2.4000001, 1) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(-0.5, 12.7999992, 65.5, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 4) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(0, 10.3999996, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 0.400000006, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Plate p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(0, 6.59999943, 66, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(4, 0.400000006, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Plate p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(1, 6.59999943, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(2, 2.4000001, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(2, 7.99999952, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true p=Instance.new("Part") p.Size=Vector3.new(1, 2.4000001, 2) p.Shape=Enum.PartType.Block p.formFactor=Enum.FormFactor.Brick p.Color=Color3.new(0.152941, 0.27451, 0.176471) p.Reflectance=0 p.Transparency=0 p.Material=Enum.Material.Plastic p.TopSurface=Enum.SurfaceType.Studs p.BottomSurface=Enum.SurfaceType.Inlet p.LeftSurface=Enum.SurfaceType.Smooth p.RightSurface=Enum.SurfaceType.Smooth p.FrontSurface=Enum.SurfaceType.Smooth p.BackSurface=Enum.SurfaceType.Smooth p.Parent=e p.CFrame=CFrame.new(1.5, 10.3999996, 64, 1, 0, 0, 0, 1, 0, 0, 0, 1) p:makeJoints() p.Anchored=false p.Locked=false p.CanCollide=true
Report Abuse
Ozzypig is not online. Ozzypig
Joined: 27 Mar 2008
Total Posts: 4906
01 Aug 2009 10:46 PM
Uh, lack of organization and no use of newline characters is bad scripting.
Report Abuse
kibaclone360 is not online. kibaclone360
Joined: 07 Sep 2008
Total Posts: 4033
02 Aug 2009 08:24 AM
I check out the book you recemended Ozzy, but Lua is not included in it. (Atleast not in the 4th edition)
Report Abuse
TheSquirrel is not online. TheSquirrel
Joined: 23 Aug 2008
Total Posts: 5557
02 Aug 2009 08:26 AM
That's an awful script Philip.
Report Abuse
hardhatworker is not online. hardhatworker
Joined: 29 Jan 2009
Total Posts: 8518
02 Aug 2009 08:32 AM
Phillip if you learned from that well....
Report Abuse
kibaclone360 is not online. kibaclone360
Joined: 07 Sep 2008
Total Posts: 4033
02 Aug 2009 09:00 AM
Bump.
Report Abuse
Turtlegiant is not online. Turtlegiant
Joined: 10 Sep 2008
Total Posts: 7793
02 Aug 2009 09:36 AM
[ Content Deleted ]
Report Abuse
dalegomaster is not online. dalegomaster
Joined: 03 May 2008
Total Posts: 774
02 Aug 2009 09:41 AM
he he he
Report Abuse
kibaclone360 is not online. kibaclone360
Joined: 07 Sep 2008
Total Posts: 4033
02 Aug 2009 12:49 PM
So does any body have any Lua books that they would recemend for beginners?
Report Abuse
Mancon123 is not online. Mancon123
Joined: 13 Dec 2008
Total Posts: 13961
02 Aug 2009 12:52 PM
http://www.roblox.com/Item.aspx?ID=363960
Report Abuse
kibaclone360 is not online. kibaclone360
Joined: 07 Sep 2008
Total Posts: 4033
02 Aug 2009 01:55 PM
I tried that place and I understand it a little better now. Is Lua programming Gems any good?
Report Abuse
kibaclone360 is not online. kibaclone360
Joined: 07 Sep 2008
Total Posts: 4033
02 Aug 2009 05:18 PM
Bump.
Report Abuse
blocco is not online. blocco
Joined: 14 Aug 2008
Total Posts: 29474
02 Aug 2009 05:20 PM
Phillip's problem, is he lacks use of tables. You can easily organize it better with tables and tabs.
Report Abuse
kibaclone360 is not online. kibaclone360
Joined: 07 Sep 2008
Total Posts: 4033
02 Aug 2009 05:24 PM
Is Lua programming Gems a good book for begginners?
Report Abuse
sncplay42 is not online. sncplay42
Joined: 27 Nov 2008
Total Posts: 11891
02 Aug 2009 05:25 PM
Nuu, someone (I think it may have been xLEG0x) told me it's ridiculously advanced.
Report Abuse
sncplay42 is not online. sncplay42
Joined: 27 Nov 2008
Total Posts: 11891
02 Aug 2009 05:26 PM
Floodchecked P. S.: You can get the first edition of PIL online.
Report Abuse
kibaclone360 is not online. kibaclone360
Joined: 07 Sep 2008
Total Posts: 4033
02 Aug 2009 06:11 PM
What's PIL?
Report Abuse
sncplay42 is not online. sncplay42
Joined: 27 Nov 2008
Total Posts: 11891
02 Aug 2009 06:11 PM
Thread Title much?
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Scripting Helpers
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image