Created by infamous scammer
Features:
- ASCENDER STATS VIEWER THINGY
function update()
local sgui = Instance.new("ScreenGui")
sgui.Parent = game.CoreGui
local lookat = game:GetService("Workspace")[game.Players.LocalPlayer.Name.."'s Base"].Ascender.Item.Value.Main.Gui
local frame = Instance.new("Frame", sgui)
frame.Size = UDim2.new(0.2, 0, 0.2, 0)
frame.Position = UDim2.new(0.7, 0, 0.02, 0)
for i, v in pairs(lookat:Clone():GetChildren()) do
v.Parent = frame
end
end
function remove()
for i, v in pairs(game.CoreGui:GetChildren()) do
if v.Name == "ScreenGui" then
v:Destroy()
end
end
end
while task.wait() do
pcall(function()
update()
task.wait(0.95)
remove()
end)
end
ENJOY!