Domain changed to archive.palanq.win . Feb 14-25 still awaits import.
[11 / 2 / ?]

ID:MhSTeLqQ No.7198326 View ViewReplyOriginalReport
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