[11 / 2 / ?]
Why is this script not working? It goes in player.PlayerScripts btw.
uis = game:GetService("UserInputService")
function onActivated()
player = game.Players.LocalPlayer
uis.InputBegan:connect(function(input,process)
if not process and input.KeyCode == Enum.KeyCode.Z then
print "z"
end
end)
end
uis = game:GetService("UserInputService")
function onActivated()
player = game.Players.LocalPlayer
uis.InputBegan:connect(function(input,process)
if not process and input.KeyCode == Enum.KeyCode.Z then
print "z"
end
end)
end