joinscript fix

This commit is contained in:
Conkley 2022-07-10 21:34:45 +10:00
parent 094eb8a7c0
commit 959a063a99
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ pcall(function() game:SetScreenshotInfo("") end)
<?php
$data = ob_get_clean();
$signature;
$key = file_get_contents(asset('GameRBLX/PrivKey.pem'));
$key = file_get_contents('../GameRBLX/PrivKey.pem');
openssl_sign($data, $signature, $key, OPENSSL_ALGO_SHA1);
echo "" . sprintf("%%%s%%%s", base64_encode($signature), $data);
?>