|
Players.MrMakeAlot.Backpack.LocalScript:12: unexpected symbol near '�'
what is this??? Please help
🔥Everlast Cafe™🔥https://www.roblox.com/My/Groups.aspx?gid=3337421🔥Public🔥 |
|
|
ghultyJoin Date: 2011-03-21 Post Count: 42 |
My magical ability to fix people's scripts without seeing them seems to be broken at the moment |
|
|
|
Ill post all the scripts that are included please read over em
🔥Everlast Cafe™🔥https://www.roblox.com/My/Groups.aspx?gid=3337421🔥Public🔥 |
|
|
Go to line 12 and remove "�" |
|
|
Player = game.LocalPlayer
Mouse = Player:GetMouse()
local Give = game:GetService("ReplicatedStorage").Events:WaitForChild("Give")
Mouse.Button1Down:connect(function()
if Mouse.Target == nil then return end
if Mouse.Target:FindFirstChild("ClickDetector") then
Give.FireServer(Mouse.Target.Name)
end
end)
is there anything here I need to fix?
🔥Everlast Cafe™🔥https://www.roblox.com/My/Groups.aspx?gid=3337421🔥Public🔥 |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
You didn't event post 12 lines of code, and those lines aren't the problem. |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
Actually, this is a problem. Player = game.LocalPlayer
change it to
Player = game.Players.LocalPlayer |
|
|
Player = game.LocalPlayer
Mouse = Player:GetMouse()
local Give = game:GetService("ReplicatedStorage").Events:WaitForChild("Give")
Mouse.Button1Down:connect(function()
if Mouse.Target == nil then return end
if Mouse.Target:FindFirstChild("ClickDetector") then
Give.FireServer(Mouse.Target.Name)
end
end)
🔥Everlast Cafe™🔥https://www.roblox.com/My/Groups.aspx?gid=3337421🔥Public🔥 |
|
|
|
Change it to game.Players.LocalPlayer and Give:FireServer. |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
So three lines of white space then. My bad.
This is a problem too: Give.FireServer(Mouse.Target.Name)
Change it to:
Give:FireServer(Mouse.Target.Name) |
|