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
 

Re: wil lthis work?

Previous Thread :: Next Thread 
XXpwn4g3XX is not online. XXpwn4g3XX
Joined: 19 Mar 2011
Total Posts: 23
15 Mar 2012 07:08 PM
p = Instance.new("Part")

p.Reflectance = 0
p.Transperency = 0.5
p.CanCollide = false
p.Position = 0, 1, 3

end

will it work for making a brick?
Report Abuse
KnightmareXD is not online. KnightmareXD
Joined: 14 Jul 2009
Total Posts: 11189
15 Mar 2012 07:14 PM
p = Instance.new("Part" Workspace)
p.Reflectance = 0
p.Transperency = 0.5
p.CanCollide = false

† KMXD †
Report Abuse
KnightmareXD is not online. KnightmareXD
Joined: 14 Jul 2009
Total Posts: 11189
15 Mar 2012 07:15 PM
Gah.

p = Instance.new("Part", Workspace)
p.Reflectance = 0
p.Transperency = 0.5
p.CanCollide = false
p.Position = (0,0,0)

† KMXD †
Report Abuse
XXpwn4g3XX is not online. XXpwn4g3XX
Joined: 19 Mar 2011
Total Posts: 23
15 Mar 2012 07:21 PM
no workz
Report Abuse
blackhalodude is not online. blackhalodude
Joined: 16 Jun 2010
Total Posts: 412
15 Mar 2012 07:24 PM
p = Instance.new("Part", Workspace)
p.Reflectance = 0
p.Transperency = 0.5
p.CanCollide = false
p.Position = (0,1,3)
Report Abuse
XXpwn4g3XX is not online. XXpwn4g3XX
Joined: 19 Mar 2011
Total Posts: 23
15 Mar 2012 07:26 PM
try my script builder its better than the other ones! theres a starter script in ti and sepret rooms
Report Abuse
blackhalodude is not online. blackhalodude
Joined: 16 Jun 2010
Total Posts: 412
15 Mar 2012 07:30 PM
It is probaly copied if you are asking if this simple script would work.
Report Abuse
1billybob1 is not online. 1billybob1
Joined: 15 Jun 2008
Total Posts: 4852
15 Mar 2012 08:12 PM
p = Instance.new("Part")

p.Parent = game.Workspace --just put Workspace or workspace if you'd like.
p.Reflectance = 0
p.Transperency = 0.5
p.CanCollide = false
p.Position = (0, 1, 3)

end
Report Abuse
epicfail22 is not online. epicfail22
Joined: 25 Sep 2009
Total Posts: 3739
15 Mar 2012 08:42 PM
You don't need an end when instancing something.
Report Abuse
1billybob1 is not online. 1billybob1
Joined: 15 Jun 2008
Total Posts: 4852
15 Mar 2012 08:44 PM
Ah yes, forgot that.
Report Abuse
ICSM1020 is not online. ICSM1020
Joined: 09 Mar 2011
Total Posts: 14277
15 Mar 2012 08:54 PM
p = Instance.new("Part")

p.Reflectance = 0
p.Position = Vector3.new(0, 0, 0)
p.CanCollide = false
p.Parent = game.Workspace
Report Abuse
SDuke524 is not online. SDuke524
Joined: 29 Jul 2008
Total Posts: 6267
15 Mar 2012 09:19 PM
All of you are wrong. Position is a Vector3 value, not a bunch of random values. You forgot to assign the parent, which won't error, but you won't see it. Transparency with an a, not e. No end.

    p = Instance.new("Part",workspace);
    p.Reflectance = 0;
    p.Transparency = 0.5;
    p.CanCollide = false;
    p.Position = Vector3.new(0, 1, 3);
Report Abuse
FinaIize is not online. FinaIize
Joined: 20 Feb 2012
Total Posts: 43
15 Mar 2012 09:39 PM
    local Part = Instance.new("Part",workspace)
    Part.Reflectance = 0
    Part.Transperency = 0.5
    Part.CanCollide = false
    Part.Position = Vector3.new(0, 1, 3)
Here.
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