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
Connection lines not working? Vote_lcapConnection lines not working? Voting_barConnection lines not working? Vote_rcap 
naknak
Connection lines not working? Vote_lcapConnection lines not working? Voting_barConnection lines not working? Vote_rcap 
Supernapalm
Connection lines not working? Vote_lcapConnection lines not working? Voting_barConnection lines not working? Vote_rcap 
m27frogy
Connection lines not working? Vote_lcapConnection lines not working? Voting_barConnection lines not working? Vote_rcap 
slayer9365
Connection lines not working? Vote_lcapConnection lines not working? Voting_barConnection lines not working? Vote_rcap 
myrco919
Connection lines not working? Vote_lcapConnection lines not working? Voting_barConnection lines not working? Vote_rcap 
branefreez
Connection lines not working? Vote_lcapConnection lines not working? Voting_barConnection lines not working? Vote_rcap 
ninga95
Connection lines not working? Vote_lcapConnection lines not working? Voting_barConnection lines not working? Vote_rcap 
CloneTrooper787
Connection lines not working? Vote_lcapConnection lines not working? Voting_barConnection lines not working? Vote_rcap 
raboy117
Connection lines not working? Vote_lcapConnection lines not working? Voting_barConnection lines not working? Vote_rcap 
Top posting users this month
No user
Latest topics
» Where to go from here.
Connection lines not working? EmptySeptember 14th 2020, 1:20 pm by MrNicNac

» Send me an Email
Connection lines not working? EmptySeptember 14th 2020, 1:16 pm by MrNicNac

» [v1.6.0.0] Lua Script Obfuscator [No Bytecode]
Connection lines not working? EmptyJuly 6th 2015, 7:38 pm by m27frogy

» New Site Possibly
Connection lines not working? EmptyJuly 6th 2015, 4:16 pm by m27frogy

» Ambassador!
Connection lines not working? EmptyApril 15th 2015, 11:40 pm by naknak

» Boop - Tag
Connection lines not working? EmptyApril 13th 2015, 9:46 pm by naknak

» Vip Class Script
Connection lines not working? EmptyApril 13th 2015, 4:54 pm by naknak

» Who's active?!
Connection lines not working? EmptyApril 13th 2015, 4:52 pm by naknak

» Genesis Point
Connection lines not working? EmptyJuly 17th 2014, 7:04 pm by branefreez

» Reward System
Connection lines not working? EmptyJuly 17th 2014, 5:41 am by m27frogy

» Script Request
Connection lines not working? EmptyJuly 10th 2014, 11:43 am by naknak

» local scripts?
Connection lines not working? EmptyJuly 10th 2014, 11:39 am by naknak

» Project: Reconstruction [Died]
Connection lines not working? EmptyJuly 10th 2014, 11:36 am by naknak

» Hi. I am new here
Connection lines not working? EmptyApril 26th 2014, 4:01 pm by altshiftkey

» What's your favorite sport?
Connection lines not working? EmptyJanuary 1st 2014, 2:13 pm by m27frogy

» FlashLight Script
Connection lines not working? EmptyJanuary 1st 2014, 2:11 pm by m27frogy

» Gun Making! [READ DESC]
Connection lines not working? EmptyJanuary 1st 2014, 2:10 pm by m27frogy

» Hi, I am new here!
Connection lines not working? EmptyNovember 26th 2013, 3:33 pm by Keanu73

» Improve Coding
Connection lines not working? EmptyOctober 26th 2013, 1:12 pm by pook03

» Simple Button
Connection lines not working? EmptySeptember 1st 2013, 6:19 pm by branefreez


 

 Connection lines not working?

Go down 
2 posters
AuthorMessage
Guest
Guest
avatar



Connection lines not working? Empty
PostSubject: Connection lines not working?   Connection lines not working? EmptyNovember 14th 2010, 5:37 pm

Is it just me or are connection lines that used to work, not work any more?
Example:
function rlick(right)
print("This wont work")
end
bin.Button2Down:connect(rlick)
its the same with Button1Down it says 'Button1/2Down' is not a valid member of bin
[[bin = Hopperbin]]
Can someone please explain to me why these wont work all the sudden? They used to work perfectly for me, but now they dont. Is it that I need to accsess the mouse to be able to do it, or did it just change?
Back to top Go down
bmxracer23
Novice Scripter
Novice Scripter
bmxracer23


Posts : 20
Join date : 2010-11-13
Age : 28
Location : Reno Nevada

Connection lines not working? Empty
PostSubject: Re: Connection lines not working?   Connection lines not working? EmptyNovember 14th 2010, 6:15 pm

Nice, but you need too be an expert scripter >.> Some one get him a expert scripter badge and i am sorry what happened at billilands old script builder i said i would stop
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


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

Connection lines not working? Empty
PostSubject: Re: Connection lines not working?   Connection lines not working? EmptyDecember 9th 2010, 8:02 am

Ah. the person who's 'better' at scripting than me needs some help eh? I'll give u some help just cuz I'm feeling nice.

to use the .Button1/2Down events u need to access it via mouse. and to access the mouse u need to use the .Selected/.Equipped event depending on wether you use hopperbin or tool. Eg for hopperbin:

function onB1D()
--stuff here
end

function onS(mouse)
mouse.Button1Down:connect(onB1D)
end
hopperbin.Selected:connect(onS)
Back to top Go down
Guest
Guest
avatar



Connection lines not working? Empty
PostSubject: Re: Connection lines not working?   Connection lines not working? EmptyJanuary 10th 2011, 10:45 pm

Aw how cute, bluey thinks he is better then me. If you noticed I already figured out the hopper connection line. I figured it out via roblox wiki..
Also thats not even right.. So think before you post. Since im in a 'good mood' ill help you.
function select(mouse)
--==Lawl==--
function onButton1Down(mouse)
--==Stuff=--
end
mouse.Button1Down:connect(function() onButton1Down(mouse) end)
end
hopperbin.Selected:connect(select)
print 'pwned newb'
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


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

Connection lines not working? Empty
PostSubject: Re: Connection lines not working?   Connection lines not working? EmptyJanuary 10th 2011, 11:29 pm

Builderboy202 wrote:
If you noticed I already figured out the hopper connection line.
I did not notice since your first post failed badly.
Builderboy202 wrote:
Is it just me or are connection lines that used to work, not work any more?
Example:
function rlick(right)
print("This wont work")
end
bin.Button2Down:connect(rlick)
its the same with Button1Down it says 'Button1/2Down' is not a valid member of bin
[[bin = Hopperbin]]
Can someone please explain to me why these wont work all the sudden? They used to work perfectly for me, but now they dont. Is it that I need to accsess the mouse to be able to do it, or did it just change?
Back to top Go down
Sponsored content





Connection lines not working? Empty
PostSubject: Re: Connection lines not working?   Connection lines not working? Empty

Back to top Go down
 
Connection lines not working?
Back to top 
Page 1 of 1
 Similar topics
-
» Connection Lines
» HOW TO: Multipul lines in a GUI object
» Some type of connection im guessing.

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