View source for Physics cursor
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
lang="javascript"
/* Physics cursor script by fp, used for most physics parkour worlds. Often edited and also mixed with the improved Guest cursors script, Also often mixed with a ratelimit of 0 chars per second */
keyConfig.cursorUp = "";
keyConfig.cursorDown = "";
keyConfig.cursorLeft = "";
keyConfig.cursorRight = "";
var backpressureX = 0;
var backpressureY = 0;
var velocityX = 0;
var velocityY = 0;
var keyLeft = false;
var keyRight = false;
var keyUp = false;
document.addEventListener("keydown", function(e) {
if (checkKeyPress(e, "UP")) {
keyUp = true;
}
if (checkKeyPress(e, "LEFT")) {
keyLeft = true;
}
if (checkKeyPress(e, "RIGHT")) {
keyRight = true;
000
1:0
Return to Physics cursor.