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
Some type of connection im guessing. Vote_lcapSome type of connection im guessing. Voting_barSome type of connection im guessing. Vote_rcap 
naknak
Some type of connection im guessing. Vote_lcapSome type of connection im guessing. Voting_barSome type of connection im guessing. Vote_rcap 
Supernapalm
Some type of connection im guessing. Vote_lcapSome type of connection im guessing. Voting_barSome type of connection im guessing. Vote_rcap 
m27frogy
Some type of connection im guessing. Vote_lcapSome type of connection im guessing. Voting_barSome type of connection im guessing. Vote_rcap 
slayer9365
Some type of connection im guessing. Vote_lcapSome type of connection im guessing. Voting_barSome type of connection im guessing. Vote_rcap 
myrco919
Some type of connection im guessing. Vote_lcapSome type of connection im guessing. Voting_barSome type of connection im guessing. Vote_rcap 
branefreez
Some type of connection im guessing. Vote_lcapSome type of connection im guessing. Voting_barSome type of connection im guessing. Vote_rcap 
ninga95
Some type of connection im guessing. Vote_lcapSome type of connection im guessing. Voting_barSome type of connection im guessing. Vote_rcap 
CloneTrooper787
Some type of connection im guessing. Vote_lcapSome type of connection im guessing. Voting_barSome type of connection im guessing. Vote_rcap 
raboy117
Some type of connection im guessing. Vote_lcapSome type of connection im guessing. Voting_barSome type of connection im guessing. Vote_rcap 
Top posting users this month
No user
Latest topics
» Where to go from here.
Some type of connection im guessing. EmptySeptember 14th 2020, 1:20 pm by MrNicNac

» Send me an Email
Some type of connection im guessing. EmptySeptember 14th 2020, 1:16 pm by MrNicNac

» [v1.6.0.0] Lua Script Obfuscator [No Bytecode]
Some type of connection im guessing. EmptyJuly 6th 2015, 7:38 pm by m27frogy

» New Site Possibly
Some type of connection im guessing. EmptyJuly 6th 2015, 4:16 pm by m27frogy

» Ambassador!
Some type of connection im guessing. EmptyApril 15th 2015, 11:40 pm by naknak

» Boop - Tag
Some type of connection im guessing. EmptyApril 13th 2015, 9:46 pm by naknak

» Vip Class Script
Some type of connection im guessing. EmptyApril 13th 2015, 4:54 pm by naknak

» Who's active?!
Some type of connection im guessing. EmptyApril 13th 2015, 4:52 pm by naknak

» Genesis Point
Some type of connection im guessing. EmptyJuly 17th 2014, 7:04 pm by branefreez

» Reward System
Some type of connection im guessing. EmptyJuly 17th 2014, 5:41 am by m27frogy

» Script Request
Some type of connection im guessing. EmptyJuly 10th 2014, 11:43 am by naknak

» local scripts?
Some type of connection im guessing. EmptyJuly 10th 2014, 11:39 am by naknak

» Project: Reconstruction [Died]
Some type of connection im guessing. EmptyJuly 10th 2014, 11:36 am by naknak

» Hi. I am new here
Some type of connection im guessing. EmptyApril 26th 2014, 4:01 pm by altshiftkey

» What's your favorite sport?
Some type of connection im guessing. EmptyJanuary 1st 2014, 2:13 pm by m27frogy

» FlashLight Script
Some type of connection im guessing. EmptyJanuary 1st 2014, 2:11 pm by m27frogy

» Gun Making! [READ DESC]
Some type of connection im guessing. EmptyJanuary 1st 2014, 2:10 pm by m27frogy

» Hi, I am new here!
Some type of connection im guessing. EmptyNovember 26th 2013, 3:33 pm by Keanu73

» Improve Coding
Some type of connection im guessing. EmptyOctober 26th 2013, 1:12 pm by pook03

» Simple Button
Some type of connection im guessing. EmptySeptember 1st 2013, 6:19 pm by branefreez


 

 Some type of connection im guessing.

Go down 
5 posters
AuthorMessage
lukenuke75
Novice Scripter
Novice Scripter
lukenuke75


Posts : 38
Join date : 2011-03-07
Age : 27

Some type of connection im guessing. Empty
PostSubject: Some type of connection im guessing.   Some type of connection im guessing. EmptyMarch 7th 2011, 3:24 pm

Code:
game.Players.PlayerAdded:connect(function(p) yada yada yada)


I need a little help understanding how to use them, it looks like they might just shorten the code a bit; Maybe even be very useful.


Last edited by lukenuke75 on March 7th 2011, 4:03 pm; edited 2 times in total (Reason for editing : Spelled guessing wrong, fixed the coding.)
Back to top Go down
Zarcius
Novice Scripter
Novice Scripter
Zarcius


Posts : 8
Join date : 2011-03-07
Age : 27
Location : The Depths of my Mind

Some type of connection im guessing. Empty
PostSubject: Re: Some type of connection im guessing.   Some type of connection im guessing. EmptyMarch 7th 2011, 3:32 pm

What you see there is what's called an anonymous function. Basically, you chop a function's connection line off, stick it on the top, and end the function with a close of the parentheses.
It's called an anonymous function simply 'cause it has no name.

Code:
 
local m = Instance.new("Hint")
m.Parent = workspace
m.Text = ""
game.Players.PlayerAdded:connect(function (p)
m.Text = "Welcome to the game, " ..p.Name.. "!"
wait(4)
m.Text = ""
end)
Back to top Go down
http://www.roblox.com/User.aspx?ID=116419
slayer9365
Expert Scripter
Expert Scripter
slayer9365


Posts : 233
Join date : 2010-07-31
Age : 29

Some type of connection im guessing. Empty
PostSubject: Re: Some type of connection im guessing.   Some type of connection im guessing. EmptyMarch 7th 2011, 3:43 pm

They are good for linking together functions that you would need multiple variables for. Especially if you want to connect an event that only gives you part of what you need.
Back to top Go down
lukenuke75
Novice Scripter
Novice Scripter
lukenuke75


Posts : 38
Join date : 2011-03-07
Age : 27

Some type of connection im guessing. Empty
PostSubject: Re: Some type of connection im guessing.   Some type of connection im guessing. EmptyMarch 7th 2011, 4:00 pm

I see, can someone give me an example of the basic use. Yes i did see yours, whom ever is above slayer. Did not check your name before posting, sorry.
Back to top Go down
lukenuke75
Novice Scripter
Novice Scripter
lukenuke75


Posts : 38
Join date : 2011-03-07
Age : 27

Some type of connection im guessing. Empty
PostSubject: Re: Some type of connection im guessing.   Some type of connection im guessing. EmptyMarch 7th 2011, 4:16 pm

I get the hang of it now :D

game.Players.PlayerAdded:connect(function(p) p.Character.Head:Remove() end)
Back to top Go down
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

Some type of connection im guessing. Empty
PostSubject: Re: Some type of connection im guessing.   Some type of connection im guessing. EmptyMarch 7th 2011, 4:22 pm

Nice script :P
Back to top Go down
lukenuke75
Novice Scripter
Novice Scripter
lukenuke75


Posts : 38
Join date : 2011-03-07
Age : 27

Some type of connection im guessing. Empty
PostSubject: Re: Some type of connection im guessing.   Some type of connection im guessing. EmptyMarch 7th 2011, 4:38 pm

IKR :D


even better:


Code:
game.Players.PlayerAdded:connect(function(p) if p.MembershipType ~="BuildersClub" and p.MembershipType ~= "TurboBuildersClub" then p.Character.Head:Remove() end end)




IDK if i did it right, but i think i did :D
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


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

Some type of connection im guessing. Empty
PostSubject: Re: Some type of connection im guessing.   Some type of connection im guessing. EmptyMarch 8th 2011, 6:41 am

BCist much?
Back to top Go down
Sponsored content





Some type of connection im guessing. Empty
PostSubject: Re: Some type of connection im guessing.   Some type of connection im guessing. Empty

Back to top Go down
 
Some type of connection im guessing.
Back to top 
Page 1 of 1
 Similar topics
-
» Connection Lines
» Connection lines not working?

Permissions in this forum:You cannot reply to topics in this forum
A Roblox Community :: Questions and Help :: Scripting-
Jump to: