A Roblox Community
Would you like to react to this message? Create an account in a few clicks or log in to continue.

A Roblox Community

A community of Robloxians who want to learn to script and build on Roblox Studio.
 
HomeLatest imagesRegisterLog in
If you're a experienced coder make some tutorials! It would really help the site grow.
Make sure you read the rules(Which can be found by clicking here)
If you're a beginner at coding, try some tutorials.
We have many Moderators/Admins watching this site. Contact them with Questions.
Let us know what your favorite sport is. By clicking here to vote (Click here)
This site is becoming inactive. Lets make it active.
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Top posters
blueymaddog
Place brick checker. Vote_lcapPlace brick checker. Voting_barPlace brick checker. Vote_rcap 
naknak
Place brick checker. Vote_lcapPlace brick checker. Voting_barPlace brick checker. Vote_rcap 
Supernapalm
Place brick checker. Vote_lcapPlace brick checker. Voting_barPlace brick checker. Vote_rcap 
m27frogy
Place brick checker. Vote_lcapPlace brick checker. Voting_barPlace brick checker. Vote_rcap 
slayer9365
Place brick checker. Vote_lcapPlace brick checker. Voting_barPlace brick checker. Vote_rcap 
myrco919
Place brick checker. Vote_lcapPlace brick checker. Voting_barPlace brick checker. Vote_rcap 
branefreez
Place brick checker. Vote_lcapPlace brick checker. Voting_barPlace brick checker. Vote_rcap 
ninga95
Place brick checker. Vote_lcapPlace brick checker. Voting_barPlace brick checker. Vote_rcap 
CloneTrooper787
Place brick checker. Vote_lcapPlace brick checker. Voting_barPlace brick checker. Vote_rcap 
raboy117
Place brick checker. Vote_lcapPlace brick checker. Voting_barPlace brick checker. Vote_rcap 
Top posting users this month
No user
Latest topics
» Where to go from here.
Place brick checker. EmptySeptember 14th 2020, 1:20 pm by MrNicNac

» Send me an Email
Place brick checker. EmptySeptember 14th 2020, 1:16 pm by MrNicNac

» [v1.6.0.0] Lua Script Obfuscator [No Bytecode]
Place brick checker. EmptyJuly 6th 2015, 7:38 pm by m27frogy

» New Site Possibly
Place brick checker. EmptyJuly 6th 2015, 4:16 pm by m27frogy

» Ambassador!
Place brick checker. EmptyApril 15th 2015, 11:40 pm by naknak

» Boop - Tag
Place brick checker. EmptyApril 13th 2015, 9:46 pm by naknak

» Vip Class Script
Place brick checker. EmptyApril 13th 2015, 4:54 pm by naknak

» Who's active?!
Place brick checker. EmptyApril 13th 2015, 4:52 pm by naknak

» Genesis Point
Place brick checker. EmptyJuly 17th 2014, 7:04 pm by branefreez

» Reward System
Place brick checker. EmptyJuly 17th 2014, 5:41 am by m27frogy

» Script Request
Place brick checker. EmptyJuly 10th 2014, 11:43 am by naknak

» local scripts?
Place brick checker. EmptyJuly 10th 2014, 11:39 am by naknak

» Project: Reconstruction [Died]
Place brick checker. EmptyJuly 10th 2014, 11:36 am by naknak

» Hi. I am new here
Place brick checker. EmptyApril 26th 2014, 4:01 pm by altshiftkey

» What's your favorite sport?
Place brick checker. EmptyJanuary 1st 2014, 2:13 pm by m27frogy

» FlashLight Script
Place brick checker. EmptyJanuary 1st 2014, 2:11 pm by m27frogy

» Gun Making! [READ DESC]
Place brick checker. EmptyJanuary 1st 2014, 2:10 pm by m27frogy

» Hi, I am new here!
Place brick checker. EmptyNovember 26th 2013, 3:33 pm by Keanu73

» Improve Coding
Place brick checker. EmptyOctober 26th 2013, 1:12 pm by pook03

» Simple Button
Place brick checker. EmptySeptember 1st 2013, 6:19 pm by branefreez


 

 Place brick checker.

Go down 
4 posters
AuthorMessage
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Place brick checker. Empty
PostSubject: Place brick checker.   Place brick checker. EmptyDecember 19th 2010, 6:39 am

My script checks all bricks in the game and then prints it in the output:

Code:
count = 0
function loop(source)
if (source:IsA("BasePart")) then
count = count + 1
end
local c = source:GetChildren()
if (#c > 0) then
for i = 1, #c do
loop(c[i])
end
end
end
loop(game)
print("There are " .. count .. " bricks in this game!")
Back to top Go down
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyJanuary 3rd 2011, 11:48 am

It is never called and it's missing an end
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyJanuary 6th 2011, 7:49 am

naknak wrote:
It is never called and it's missing an end
orly? count the if statements, for loops and function creation lines. add em' together and compare the number of ends...Hey wouldn'tcha know they're the same!
Explain how this line doesn't call the loop pl0x?
blueymaddog wrote:
loop(game)
Back to top Go down
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyJanuary 15th 2011, 12:31 am

oh wait, I didn't notice the scroll bar >.< sorry about that.
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyJanuary 15th 2011, 5:55 am

it's ok, that happens to me sometimes! =P
Back to top Go down
m27frogy
The Garbageman
m27frogy


Posts : 336
Join date : 2011-06-23

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyJune 24th 2011, 2:36 pm

Nice script, it's one of those simple scripts scripters give out sometimes.
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyNovember 20th 2011, 6:55 am

yea, I love showing people my scripts that aren't on free models that are made by scratch :3
Back to top Go down
IsAPotato
Novice Scripter
Novice Scripter
IsAPotato


Posts : 16
Join date : 2011-06-04
Location : California

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyDecember 13th 2011, 2:58 am

I just do it using a number value.

Code:
weewee = game.Workspace:GetChildren()
numval = game.Workspace:findFirstChild("Value")

for i=1, #weewee do
if weewee[i].ClassName = "Part" then
numval.Value = numval.Value + 1
print(numval.Value)
end
end

If you put a Number Value in the game and a script I believe that works quite well.
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyDecember 13th 2011, 5:42 am

in my opinion it would just overcomplicate. if I wanted it accessed by other scrips I would put the value on _G.
Back to top Go down
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyDecember 13th 2011, 11:41 pm

Code:
numval = _G.BrickNum

for i,v in pairs(game.Workspace:GetChildren()) do
if v.ClassName = "Part" then
numval.Value = numval.Value + 1
print(numval.Value)
end end

unless I screwed that up... I haven't messed with lua in forever.
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyFebruary 4th 2012, 11:33 am

the difference between my script and the scripts suggested below is that it gets the descendents of Workspace, not just the children.
Back to top Go down
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyFebruary 5th 2012, 1:39 am

Oh, opps yeah that was kind of important. Fail >.<
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. EmptyFebruary 5th 2012, 7:46 am

lol double fail, your face got split to the next line XD
Back to top Go down
Sponsored content





Place brick checker. Empty
PostSubject: Re: Place brick checker.   Place brick checker. Empty

Back to top Go down
 
Place brick checker.
Back to top 
Page 1 of 1
 Similar topics
-
» How too anchor a brick
» Brick Batlle building!
» Create a new brick using a script
» Brick Battle arena from scratch
» How to make a brick: Transparent, Shiny and/or go-through-able

Permissions in this forum:You cannot reply to topics in this forum
A Roblox Community :: Tutorials and Resources :: Free Scripts-
Jump to: