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.
003 | me = script.Parent.Parent.Parent |
011 | local bin = script.Parent |
013 | bin.Selected:connect( function (mouse) |
014 | mouse.KeyDown:connect( function (key) |
016 | if enabled = = false then |
020 | me.Character.Torso.Anchored = true |
021 | RightShoulder = me.Character.Torso [ "Right Shoulder" ] |
022 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles(- 0.1 , 0 , 0 ) |
024 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles(- 0.2 , 0 , 0 ) |
026 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles(- 0.3 , 0 , 0 ) |
028 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles(- 0.4 , 0 , 0 ) |
030 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles(- 0.5 , 0 , 0 ) |
032 | game:GetService( "Chat" ):Chat(me.Character.Head, "Survey the Heavens, Open the Heavens..." ) |
034 | game:GetService( "Chat" ):Chat(me.Character.Head, "Oh 88 Stars of the heaven..." ) |
036 | game:GetService( "Chat" ):Chat(me.Character.Head, "Shine!" ) |
038 | game:GetService( "Chat" ):Chat(me.Character.Head, "Urano Metria!" ) |
040 | local model = bin.Monster:clone() |
041 | me.Character.Humanoid.Name = "Me" |
042 | model.Parent = me.Character |
044 | model.Gemini.Torso.CFrame = me.Character.Torso.CFrame * CFrame.new( 9 , 0 , 0 ) |
045 | model.Gemini.Follow.Disabled = false |
046 | LeftShoulder = model.Gemini.Torso [ "Left Shoulder" ] |
047 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0.1 , 0 , 0 ) |
049 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0.2 , 0 , 0 ) |
051 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0.3 , 0 , 0 ) |
053 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0.4 , 0 , 0 ) |
055 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0.5 , 0 , 0 ) |
057 | MagicSym = Instance.new( "Part" ) |
058 | MagicSym.Parent = me.Character.Torso |
059 | MagicSym.Anchored = true |
060 | MagicSym.CanCollide = false |
061 | MagicSym.formFactor = "Symmetric" |
062 | MagicSym.BrickColor = BrickColor.new( "New Yeller" ) |
063 | MagicSym.Transparency = 1 |
064 | MagicSym.Name = "MagicSym" |
065 | MagicSym.Size = Vector 3. new( 30 , 1 , 30 ) |
066 | MagicSym.TopSurface = "Smooth" |
067 | MagicSym.CFrame = me.Character.Torso.CFrame*CFrame.new( 4.5 ,- 3 , 0 ) |
068 | d = Instance.new( "Decal" ) |
074 | MagicSym.CFrame = MagicSym.CFrame *CFrame.Angles( 0 , 0.005 , 0 ) |
079 | me.Character.Torso.Anchored = false |
080 | RightShoulder = me.Character.Torso [ "Right Shoulder" ] |
081 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0.4 , 0 , 0 ) |
082 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0.3 , 0 , 0 ) |
083 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0.2 , 0 , 0 ) |
084 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0.1 , 0 , 0 ) |
085 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0 , 0 , 0 ) |
086 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0.5 , 0 , 0 ) |
087 | if me.Character:FindFirstChild( "Monster" )~ = nil then |
088 | game:GetService( "Chat" ):Chat(me.Character.Head, "Thank you!" ) |
090 | me.Character.Me.Name = "Humanoid" |
093 | if me.Character:FindFirstChild( "Me" )~ = nil then |
094 | me.Character.Me.Name = "Humanoid" |
104 | function onSelected(mouse) |
106 | mouse.Button 1 Down:connect( function () onButton 1 Down(mouse) end ) |
110 | bin.Selected:connect(onSelected) |
If you want to further improve your script, please look into...
Local variables
:Destroy() method
UserInputService