Hello,
In a ScreenGUI, I have an ObjectValue named “Down”, which has its value initialized to “down”. Also, in the ScreenGUI, I have a LocalScript which contains the following code that modifies the value:
gui = script.Parent.ClawBase
d = gui.DownFrame.D
d.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
script.Parent.Down.Value:FireServer(true)
end
end)
d.InputEnded:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
script.Parent.Down.Value:FireServer(false)
end
end)
I attempted to add another ObjectValue named “Drop”, and added the following code:
gui = script.Parent.ClawBase
d = gui.DownFrame.D
drop = gui.DropFrame.Drop -- New Line
d.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
script.Parent.Down.Value:FireServer(true)
end
end)
d.InputEnded:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
script.Parent.Down.Value:FireServer(false)
end
end)
drop.Activated:Connect(function(input) -- New Lines
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
script.Parent.Drop.Value:FireServer()
end
end)
Unlike the other ObjectValue, I am unable to initialize the “Drop” ObjectValue Value. When I playtest the game, the Value becomes nil, even if I try to set it to something.
When I trigger the “script.Parent.Drop.Value:FireServer()” code, I get the Players.tech_voyager.PlayerGui.ElectronControl.LocalScript:50: attempt to index nil with ‘FireServer’ error. How do I fix this issue?
Thanks!