Graphictoria-Legacy/api/img/hats.php

14 lines
314 B
PHP

<?php
if (isset($_GET['id'])) {
$datafile = $_GET['id'];
}else{
exit;
}
?>
game:Load("http://xdiscuss.net/data/assets/hats/models/<?php echo htmlentities($datafile, ENT_QUOTES, "UTF-8"); ?>");
local p = game:GetChildren()
for i = 1, #p do
if p[i].className == "Hat" then
p[i].Parent = game.Workspace
end
end