This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- StarterCharacterScripts/AntiWallhop | |
local RunService = game:GetService("RunService") | |
local CAST_POINTS = { | |
-- Center line | |
Vector3.new(0, -0.75, 0), | |
Vector3.new(0, -0.75, 1), | |
Vector3.new(0, -0.75, -1), | |
-- Corners |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
const int pation = 1; | |
int main() { | |
std::cout << "POOPING" << std::endl; | |
while (pation) {} | |
std::cout << "DONE POOPING" << std::endl; | |
return 0; | |
} |