Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

What is wrong with my keydown script?

Asked by 9 years ago
001bin = script.Parent
002 
003me = script.Parent.Parent.Parent
004 
005local enabled = true
006local bin = script.Parent
007bin.Selected:connect(function(mouse)
008    mouse.KeyDown:connect(function(key)
009        if key == "c" then
010 
011        if enabled == false then
012        return
013    end
014 
015    enabled = false
View all 130 lines...

The problem is that it does not run. It used to be a MouseButton1click but I decided to make it a keydown. Right now nothing happens. Error:

17:41:13.070 - Players.Player1.Backpack.Urano.LocalScript:134: ')' expected (to close '(' at line 8) near '<eof>'

0
Maybe you should tell us what is wrong instead of asking what is wrong so we can fix what is wrong? 1waffle1 2908 — 9y
0
There are no "end)" If you're gonna make a event function, You need to have "end)" not "end" KenzaXI 166 — 9y

1 answer

Log in to vote
1
Answered by
Redbullusa 1580 Moderation Voter
9 years ago

Let's start with the error message. It gives you a clue on what's going on. In case if you didn't know, eof means end of file, or basically the end of the script.

So basically we're missing some ends! This would've been avoided if you tabbed your code correctly.

001bin = script.Parent
002 
003me = script.Parent.Parent.Parent
004--[[
005    or
006    local Player = game.Players.LocalPlayer
007    local Character = Player.Character or Player.CharacterAdded:wait()
008--]]
009 
010local enabled = true
011local bin = script.Parent
012 
013bin.Selected:connect(function(mouse)
014    mouse.KeyDown:connect(function(key)
015        if key == "c" then
View all 111 lines...

If you want to further improve your script, please look into...

Local variables

:Destroy() method

UserInputService

0
Thx Relampago1204 73 — 9y
Ad

Answer this question