Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local doc = loadstring(game:HttpGet("https://pastebin.com/raw/LPbHbiiV", true))()
- setmetatable(_G,{
- __index = function(t,name)
- _G[name] = doc.tags(name)
- return _G[name]
- end
- })
- table_,html_ = doc.tags 'table,html'
- function html(spec)
- local d = doc.tostring(html_(spec),'',' ')
- local name
- if arg then -- not interactive
- name = arg[0]:match('([%w_%-]+)%.lua')
- end
- if name then
- local f = io.open(name..'.html','w')
- f:write(d)
- f:close()
- else
- print(d)
- end
- end
- --[[local CoreGui = game:GetService('CoreGui')
- local ScreenGui = Instance.new("ScreenGui") -- Old: randomstring
- ScreenGui.Name = "ScreenGui"
- ScreenGui.Parent = s_CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- local vf = Instance.new("ViewportFrame", script.Parent)
- vf.Size = UDim2.new(0.5, 0, 0.5, 0)
- vf.Position = UDim2.new(0.25, 0, 0.25, 0)
- vf.BackgroundColor3 = Color3.new(1, 1, 1)
- local part = Instance.new("Part", vf)
- part.Position = Vector3.new(0, 0, 0)
- local camera = Instance.new("Camera", vf)
- vf.CurrentCamera = camera
- local cameraPosition = Vector3.new(3, 3, 3)
- camera.CFrame = CFrame.new(cameraPosition, part.Position)]]
Advertisement
Add Comment
Please, Sign In to add comment