Render script
This commit is contained in:
parent
be50e0b2d4
commit
55c48934fc
|
|
@ -42,7 +42,7 @@ game:HttpPost(
|
||||||
|
|
||||||
local player = game:GetService("Players"):CreateLocalPlayer(0)
|
local player = game:GetService("Players"):CreateLocalPlayer(0)
|
||||||
player.CharacterAppearance = baseUrl
|
player.CharacterAppearance = baseUrl
|
||||||
.. "/Asset/CharacterFetch.ashx?userID="
|
.. "/asset/characterfetch?userID="
|
||||||
.. assetId
|
.. assetId
|
||||||
.. "&serverId=-1&t="
|
.. "&serverId=-1&t="
|
||||||
.. tick()
|
.. tick()
|
||||||
|
|
@ -71,7 +71,7 @@ while true do
|
||||||
.. game.JobId,
|
.. game.JobId,
|
||||||
result,
|
result,
|
||||||
true,
|
true,
|
||||||
"text/plain"
|
"text/json"
|
||||||
)
|
)
|
||||||
end)
|
end)
|
||||||
if not ok then
|
if not ok then
|
||||||
|
|
|
||||||
|
|
@ -38,8 +38,7 @@ game:HttpPost(
|
||||||
.. game.JobId,
|
.. game.JobId,
|
||||||
'{"Status": 1}',
|
'{"Status": 1}',
|
||||||
true,
|
true,
|
||||||
"text/json",
|
"text/json"
|
||||||
true
|
|
||||||
)
|
)
|
||||||
|
|
||||||
local player = game:GetService("Players"):CreateLocalPlayer(0)
|
local player = game:GetService("Players"):CreateLocalPlayer(0)
|
||||||
|
|
@ -71,7 +70,7 @@ while true do
|
||||||
.. game.JobId,
|
.. game.JobId,
|
||||||
result,
|
result,
|
||||||
true,
|
true,
|
||||||
"text/plain"
|
"text/json"
|
||||||
)
|
)
|
||||||
end)
|
end)
|
||||||
if not ok then
|
if not ok then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue