<roblox xmlns:xmime="http://www.w3.org/2005/05/xmlmime" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.roblox.com/roblox.xsd" version="4">
	<External>null</External>
	<External>nil</External>
	<Item class="Script" referent="RBXEB2B3FF229F945F48E85833D83A94AA6">
		<Properties>
			<bool name="Disabled">false</bool>
			<Content name="LinkedSource"><null></null></Content>
			<string name="Name">Output Checking System</string>
			<ProtectedString name="Source">local Admins = {&quot;Player1&quot;,&quot;Player2&quot;} -- Owner is automatically added to the list

--[[
&#9;OutputCheckingSystem (OCS) by oxcool1 [V1.3]
&#9;
&#9;READ ME:
&#9; - Parent the script to the Terrain object in workspace [optional] (to catch more data on start).
&#9; - You can communicate with your server/website using the OnDataRecieved function on line 22.
&#9; - You can enable the &apos;print&apos; function by putting the following code in the beginning of your script:
&#9;&#9;local print = require(game:GetService(&quot;ReplicatedStorage&quot;):WaitForChild(&quot;OCServer&quot;).PrintFunction)
&#9; - Safe ScriptBuilder added, commands:
&#9;&#9;/s source -- for normal scripting
&#9;&#9;/l source -- for local scripting
&#9;&#9;/nl player source -- for local scripting to player
&#9;
&#9;OBJECTS ADDED/USED by The Script: (interaction with them might cause errors to the script)
&#9; - A server called &quot;OCServer&quot; will be added to the ReplicatedStorage.
&#9; - Admins will have a GUI called &quot;OutputGUI&quot;.
&#9; - Every player will have a LocalScript called &quot;ClientController&quot; in their Backpack.
&#9; - The StaterPack will have a LocalScript called &quot;ClientController&quot;.
--]]

local OnDataRecieved = function(sideType,data)
&#9;if sideType == &quot;Server&quot; then
&#9;&#9;local outputText,stackTrace,scriptObj,outputType = unpack(data)
&#9;&#9;-- (serverside) you can communicate with your server/website here 
&#9;&#9; -- outputType are Errors or Prints, outputType == &quot;Print&quot; or outputType == &quot;Error&quot;
&#9;&#9;
&#9;&#9;-- print(outputText,stackTrace,scriptObj,outputType)
&#9;&#9;
&#9;&#9;
&#9;elseif sideType == &quot;Client&quot; then
&#9;&#9;local Player,outputText,stackTrace,scriptObj,outputType = unpack(data)
&#9;&#9;-- (clientside, with the player vairbale given) you can communicate with your server/website here 
&#9;&#9; -- outputType are Errors or Prints, outputType == &quot;Print&quot; or outputType == &quot;Error&quot;
&#9;&#9;
&#9;&#9;--print(Player,outputText,stackTrace,scriptObj,outputType)
&#9;&#9;
&#9;end
end

----------------------------------------------------------

local ServerSide = {{&quot;OCS - ServerMode&quot;}}
local ClientSides = {}
local OCServer = script.OCServer

local GetTime = function(text)
&#9;local gameTime = workspace.DistributedGameTime
&#9;local hour, min, sec = math.floor(gameTime/3600)%24, math.floor(gameTime/60)%60, math.floor(gameTime)%60
&#9;return (hour &lt; 10 and &quot;0&quot;..hour or hour)..&quot;:&quot;..(min &lt; 10 and &quot;0&quot;..min or min)..&quot;:&quot;..(sec &lt; 10 and &quot;0&quot;..sec or sec)..&quot; - &quot;..text
end

local AddServerSideData = function(data)
&#9;data[1][1] = GetTime(data[1][1])
&#9;table.insert(ServerSide,data)&#9;
&#9;OCServer:FireAllClients(&quot;Server&quot;,{data,#ServerSide})
&#9;if data[2] ~= &quot;Note&quot; then
&#9;&#9;table.insert(data[1],data[2])
&#9;&#9;OnDataRecieved(&quot;Server&quot;,data[1])
&#9;end
end

-- ServerErrorChecker
game:GetService(&quot;ScriptContext&quot;).Error:connect(function(error,stack,escript)
&#9;if script == escript then return end
&#9;AddServerSideData({{error,stack,{escript:GetFullName(),escript.ClassName,escript}},&quot;Error&quot;})
end)

_G.OSC_AddServerSideData = setmetatable({},
&#9;{
&#9;&#9;__call = function(self, ...)
&#9;&#9;&#9;AddServerSideData(...)
&#9;&#9;end,
&#9;&#9;__metatable = &quot;Nop&quot;
&#9;}
)

----------------------------------------------------------

local Players = game:GetService(&quot;Players&quot;)
local StarterPack = game:GetService(&quot;StarterPack&quot;)

local StaterPackList = StarterPack:GetChildren()
for i,child in pairs(StaterPackList) do
&#9;child.Parent = nil
end

script.ClientController.Parent = StarterPack

for i,child in pairs(StaterPackList) do
&#9;child.Parent = StarterPack
end

----------------------------------------------------------

OCServer.OnServerEvent:connect(function(player,data)
&#9;data[1][1] = GetTime(data[1][1])
&#9;table.insert(ClientSides[player],data)
&#9;OCServer:FireAllClients(&quot;Client&quot;,{data,#ClientSides[player]},player)
&#9;if data[2] ~= &quot;Note&quot; then
&#9;&#9;table.insert(data[1],data[2])
&#9;&#9;OnDataRecieved(&quot;Client&quot;,{player,unpack(data[1])})
&#9;end
end)

local GetSides = OCServer.GetSides
GetSides.OnServerInvoke = function(player,sideType)
&#9;if sideType == &quot;Server&quot; then
&#9;&#9;return ServerSide
&#9;elseif sideType == &quot;Client&quot; then
&#9;&#9;local ClientSidesData = {{player,ClientSides[player]}}
&#9;&#9;for plyer,data in pairs(ClientSides) do
&#9;&#9;&#9;if plyer ~= player then
&#9;&#9;&#9;&#9;table.insert(ClientSidesData,{plyer,data})
&#9;&#9;&#9;end
&#9;&#9;end
&#9;&#9;return ClientSidesData
&#9;end
end

OCServer.Parent = game:GetService(&quot;ReplicatedStorage&quot;)

----------------------------------------------------------
-- ScriptBuilder

local SendData = function(type,...)
&#9;local arg = {}
&#9;local argn = select(&quot;#&quot;,...)
&#9;if argn &gt; 0 then
&#9;&#9;for i = 1,argn do 
&#9;&#9;&#9;arg[i] = tostring(select(i,...))
&#9;&#9;end 
&#9;end
&#9;AddServerSideData({{table.concat(arg,&apos;\t&apos;),&quot;\t---&quot;,{&quot;QuickCoding&quot;,&quot;QuickCode&quot;}},type})
end

local newEnv = setmetatable({},{__index = function(self,index)
&#9;if index == &quot;print&quot; then
&#9;&#9;return function(...)
&#9;&#9;&#9;SendData(&quot;Print&quot;,...)
&#9;&#9;end
&#9;elseif index == &quot;script&quot; then
&#9;&#9;return nil
&#9;else
&#9;&#9;return getfenv()[index]
&#9;end
end})

function SBChat(msg,speaker)
&#9;local cmd,result = msg:match(&quot;^(.-) (.+)&quot;)
&#9;if cmd == &quot;/s&quot; then
&#9;&#9;local func,err = loadstring(result,&quot;QuickCode&quot;)
&#9;&#9;if func then
&#9;&#9;&#9;local result,err = ypcall(setfenv(func,newEnv))
&#9;&#9;&#9;if not result then
&#9;&#9;&#9;&#9;SendData(&quot;Error&quot;,err)
&#9;&#9;&#9;end
&#9;&#9;else
&#9;&#9;&#9;SendData(&quot;Error&quot;,err)
&#9;&#9;end
&#9;elseif cmd == &quot;/l&quot; then
&#9;&#9;&#9;OCServer.ScriptBuilder:FireClient(speaker,result)
&#9;elseif cmd == &quot;/nl&quot; then
&#9;&#9;local player,source = result:match(&quot;^(.-) (.+)&quot;)
&#9;&#9;if player then
&#9;&#9;&#9;for i,plyer in pairs(Players:GetPlayers()) do
&#9;&#9;&#9;&#9;if plyer.Name:lower():find(player,1,true) == 1 then
&#9;&#9;&#9;&#9;&#9;OCServer.ScriptBuilder:FireClient(plyer,source)
&#9;&#9;&#9;&#9;&#9;return;
&#9;&#9;&#9;&#9;end
&#9;&#9;&#9;end
&#9;&#9;end
&#9;end
end

----------------------------------------------------------

Players.PlayerAdded:connect(function(player)
&#9;ClientSides[player] = {}
&#9;---- if player.userId == game.CreatorId or (table.concat(Admins,&quot;,&quot;)..&quot;,&quot;):lower():match(player.Name:lower()..&quot;,&quot;) then
&#9;&#9;script.OutputGUI:clone().Parent = player:WaitForChild(&quot;Backpack&quot;)
&#9;&#9;player.Chatted:connect(function(msg)
&#9;&#9;&#9;---- SBChat(msg,player)
&#9;&#9;end)
&#9;---- end
end)

Players.PlayerRemoving:connect(function(player)
&#9;ClientSides[player] = nil
end)

----------------------------------------------------------
-- Update Information

pcall(function()
&#9;local CurrentVersion = &quot;1.3&quot;
&#9;---- local LatestVersion = game:GetService(&quot;MarketplaceService&quot;):GetProductInfo(140878711).Name:match(&quot;%[V(.-)%]&quot;)
&#9;---- ServerSide[1] = {{&quot;OutputCheckingSystem (OCS) by oxcool1 [V&quot;..CurrentVersion..&quot;]&quot;..(tonumber(LatestVersion) &gt; tonumber(CurrentVersion) and &quot; - New Version Available&quot; or &quot;&quot;)},&quot;Note&quot;}
&#9;ServerSide[1] = {{&quot;OutputCheckingSystem (OCS) by oxcool1 [V&quot;..CurrentVersion..&quot;]&quot;},&quot;Note&quot;}
end)</ProtectedString>
		</Properties>
		<Item class="LocalScript" referent="RBXD430649D456546EBB8B669AD3CFBA2D9">
			<Properties>
				<bool name="Disabled">false</bool>
				<Content name="LinkedSource"><null></null></Content>
				<string name="Name">ClientController</string>
				<ProtectedString name="Source">local Player = game:GetService(&quot;Players&quot;).LocalPlayer
local OCServer = game:GetService(&quot;ReplicatedStorage&quot;).OCServer

-- ClientErrorChecker

game:GetService(&quot;ScriptContext&quot;).Error:connect(function(error,stack,escript)
&#9;if script == escript then return end
&#9;OCServer:FireServer({{error,stack,{escript:GetFullName(),escript.ClassName,escript}},&quot;Error&quot;})
end)

OCServer:FireServer({{&quot;Character added&quot;..(_G.OCS_NotFirstTime and &quot;&quot; or &quot; - first time&quot;)},&quot;Note&quot;})
_G.OCS_NotFirstTime = true


-- ScriptBuilder

local SendData = function(type,...)
&#9;local arg = {}
&#9;local argn = select(&quot;#&quot;,...)
&#9;if argn &gt; 0 then
&#9;&#9;for i = 1,argn do 
&#9;&#9;&#9;arg[i] = tostring(select(i,...))
&#9;&#9;end 
&#9;end
&#9;OCServer:FireServer({{table.concat(arg,&apos;\t&apos;),&quot;\t---&quot;,{&quot;ClientQuickCoding&quot;,&quot;QuickCode&quot;}},type})
end

local newEnv = setmetatable({},{__index = function(self,index)
&#9;if index == &quot;print&quot; then
&#9;&#9;return function(...)
&#9;&#9;&#9;SendData(&quot;Print&quot;,...)
&#9;&#9;end
&#9;elseif index == &quot;script&quot; then
&#9;&#9;return nil
&#9;else
&#9;&#9;return getfenv()[index]
&#9;end
end})

OCServer.ScriptBuilder.OnClientEvent:connect(function(source)
&#9;local func,err = loadstring(source,&quot;QuickCode&quot;)
&#9;if func then
&#9;&#9;local result,err = ypcall(setfenv(func,newEnv))
&#9;&#9;if not result then
&#9;&#9;&#9;SendData(&quot;Error&quot;,err)
&#9;&#9;end
&#9;else
&#9;&#9;SendData(&quot;Error&quot;,err)
&#9;end
end)</ProtectedString>
			</Properties>
		</Item>
		<Item class="LocalScript" referent="RBXE47D4F82E50545C6927004D9F0EB0530">
			<Properties>
				<bool name="Disabled">false</bool>
				<Content name="LinkedSource"><null></null></Content>
				<string name="Name">OutputGUI</string>
				<ProtectedString name="Source">local Players = game:GetService(&quot;Players&quot;)
local OCServer = game:GetService(&quot;ReplicatedStorage&quot;).OCServer
local OutputGuiTemp = OCServer.Storage.OutputGUI:clone()

wait();script.Parent = nil
-----------------------------------------

local Player = Players.LocalPlayer
local textColor = {Error = {1,0,0},Note = {1,0.6,0},Print = {1,1,1}}
local backgroundColor = {Error = {1,170/255,0},Note = {0,0,0},Print = {69/255,207/255,207/255}}

function newThread(func)
&#9;coroutine.resume(coroutine.create(func))
end

function editZIndex(gui,zindex)
&#9;gui.ZIndex = zindex
&#9;for i,child in pairs(gui:GetChildren()) do
&#9;&#9;editZIndex(child,zindex)
&#9;end
end

function ScrollSystem(content,scroll,mDrag)
&#9;local scrollIndex = 0
&#9;local listSize = 0 -- whole
&#9;local contentSize = content.AbsoluteSize.y -- current
&#9;local down = scroll.Down
&#9;local up = scroll.Up
&#9;local bar = scroll.Bar
&#9;local drag = bar.Drag
&#9;
&#9;local function UpdateScroll()
&#9;&#9;scrollIndex = listSize  &gt; contentSize and (scrollIndex+contentSize &gt; listSize and listSize-contentSize or scrollIndex &lt; 0 and 0 or scrollIndex) or 0
&#9;&#9;
&#9;&#9;local downable = scrollIndex &lt; listSize - contentSize
&#9;&#9;local upable = scrollIndex &gt; 0
&#9;&#9;down.Active = downable
&#9;&#9;up.Active = upable
&#9;&#9;drag.Active = downable or upable
&#9;&#9;editZIndex(down,downable and 9 or 8)
&#9;&#9;editZIndex(up,upable and 9 or 8)
&#9;&#9;editZIndex(drag,drag.Active and 9 or 8)
&#9;&#9;&#9;&#9;&#9;
&#9;&#9;local dragSize = bar.AbsoluteSize.y/listSize*contentSize
&#9;&#9;drag.Size = dragSize &gt; bar.AbsoluteSize.y and UDim2.new(1,0,1,0) or UDim2.new(1,0,0,dragSize &lt; 17 and 17 or dragSize)
&#9;&#9;drag.Position = UDim2.new(0,0,0,scrollIndex*(bar.AbsoluteSize.y-drag.AbsoluteSize.y)/(listSize-contentSize))
&#9;&#9;content.Position = UDim2.new(0,0,0,-scrollIndex)
&#9;end
&#9;
&#9;down.MouseButton1Down:connect(function()
&#9;&#9;down.Selected = true
&#9;&#9;newThread(function()
&#9;&#9;&#9;mDrag.MouseButton1Up:wait()
&#9;&#9;&#9;mDrag.Visible = false
&#9;&#9;&#9;down.Selected = false
&#9;&#9;end)
&#9;&#9;mDrag.Visible = true
&#9;&#9;
&#9;&#9;scrollIndex = scrollIndex + 10
&#9;&#9;UpdateScroll()
&#9;&#9;
&#9;&#9;wait(0.2)
&#9;&#9;local oldTick = tick()
&#9;&#9;while down.Selected do
&#9;&#9;&#9;if not up.Active then 
&#9;&#9;&#9;&#9;up.Selected = false
&#9;&#9;&#9;&#9;break
&#9;&#9;&#9;end
&#9;&#9;&#9;scrollIndex = scrollIndex + 10
&#9;&#9;&#9;UpdateScroll()
&#9;&#9;&#9;wait(tick()-oldTick &gt; 5 and 0 or tick()-oldTick &gt; 2 and 0.06 or 0.1)
&#9;&#9;end
&#9;end)
&#9;
&#9;up.MouseButton1Down:connect(function()
&#9;&#9;up.Selected = true
&#9;&#9;newThread(function()
&#9;&#9;&#9;mDrag.MouseButton1Up:wait()
&#9;&#9;&#9;mDrag.Visible = false
&#9;&#9;&#9;up.Selected = false
&#9;&#9;end)
&#9;&#9;mDrag.Visible = true
&#9;&#9;
&#9;&#9;scrollIndex = scrollIndex - 10
&#9;&#9;UpdateScroll()
&#9;&#9;
&#9;&#9;wait(0.2)
&#9;&#9;local oldTick = tick()
&#9;&#9;while up.Selected do
&#9;&#9;&#9;if not up.Active then 
&#9;&#9;&#9;&#9;up.Selected = false
&#9;&#9;&#9;&#9;break
&#9;&#9;&#9;end
&#9;&#9;&#9;scrollIndex = scrollIndex - 10
&#9;&#9;&#9;UpdateScroll()
&#9;&#9;&#9;wait(tick()-oldTick &gt; 5 and 0 or tick()-oldTick &gt; 2 and 0.06 or 0.1)
&#9;&#9;end
&#9;end)
&#9;
&#9;drag.MouseButton1Down:connect(function(x,y)
&#9;&#9;local mPos = y - drag.AbsolutePosition.y
&#9;&#9;drag.Selected = true
&#9;&#9;local conDrag = mDrag.MouseMoved:connect(function(x,y)
&#9;&#9;&#9;scrollIndex = (y - mPos - bar.AbsolutePosition.y)*(listSize/bar.AbsoluteSize.y)
&#9;&#9;&#9;UpdateScroll()
&#9;&#9;end)
&#9;&#9;newThread(function()
&#9;&#9;&#9;mDrag.MouseButton1Up:wait()
&#9;&#9;&#9;mDrag.Visible = false
&#9;&#9;&#9;conDrag:disconnect()
&#9;&#9;&#9;drag.Selected = false
&#9;&#9;end)
&#9;&#9;mDrag.Visible = true
&#9;end)
&#9;
&#9;scroll.Parent.MouseWheelForward:connect(function()
&#9;&#9;scrollIndex = scrollIndex - 14
&#9;&#9;UpdateScroll()
&#9;end)
&#9;
&#9;scroll.Parent.MouseWheelBackward:connect(function()
&#9;&#9;scrollIndex = scrollIndex + 14
&#9;&#9;UpdateScroll()
&#9;end)
&#9;
&#9;local ScrollControl = setmetatable({UpdateScroll = UpdateScroll},{
&#9;&#9;__index = function(self,index)
&#9;&#9;&#9;if index == &quot;Index&quot; then
&#9;&#9;&#9;&#9;return scrollIndex
&#9;&#9;&#9;elseif index == &quot;listSize&quot; then
&#9;&#9;&#9;&#9;return listSize
&#9;&#9;&#9;elseif index == &quot;Content&quot; then
&#9;&#9;&#9;&#9;return content
&#9;&#9;&#9;end
&#9;&#9;end,
&#9;&#9;__newindex = function(self,index,value)
&#9;&#9;&#9;if index == &quot;Index&quot; then
&#9;&#9;&#9;&#9;scrollIndex = value
&#9;&#9;&#9;elseif index == &quot;listSize&quot; then
&#9;&#9;&#9;&#9;listSize = value
&#9;&#9;&#9;else
&#9;&#9;&#9;&#9;rawset(self,index,value)
&#9;&#9;&#9;end
&#9;&#9;end
&#9;})
&#9;
&#9;return ScrollControl
&#9;
end

-----------------------------------------

local ServerSide = OCServer.GetSides:InvokeServer(&quot;Server&quot;)
local ClientSides = OCServer.GetSides:InvokeServer(&quot;Client&quot;)

setmetatable(ClientSides,{
&#9;__index = function(self,player)
&#9;&#9;for i,cside in pairs(ClientSides) do
&#9;&#9;&#9;if cside[1] == player then
&#9;&#9;&#9;&#9;return {i,cside[2]}
&#9;&#9;&#9;end
&#9;&#9;end&#9;
&#9;end
})

local Main,OpenClose;
local SelectSide,Output,DataInfo;
local SelectedSide,SelectedData;

function StartOutputGUI()
&#9;SelectedSide = ServerSide
&#9;
&#9;local OutputGUI = OutputGuiTemp:clone()
&#9;OutputGUI.Parent = Player:WaitForChild(&quot;PlayerGui&quot;)
&#9;
&#9;Main = OutputGUI.Main
&#9;OpenClose = OutputGUI.OpenClose
&#9;local mDrag = OutputGUI.MouseDrag
&#9;
&#9;
&#9;-- SelectSide
&#9;local Header = Main.Header.Title
&#9;local SelectSideFrame = Main.SelectSide
&#9;local Server = SelectSideFrame.Server -- also used as client template
&#9;local Clients = SelectSideFrame.Clients
&#9;SelectSide = ScrollSystem(Clients.List.Content,Clients.Scroll,mDrag)
&#9;
&#9;SelectSide.UpdateList = function()
&#9;&#9;local content = SelectSide.Content
&#9;&#9;
&#9;&#9;Header.Text = SelectedSide == ServerSide and &quot;Server-side Output&quot; or &quot;Local Output: &quot;..SelectedSide.Name
&#9;&#9;content:ClearAllChildren()
&#9;&#9;
&#9;&#9;Server.TextColor3 = (SelectedSide == ServerSide and Color3.new(0,1,0) or Color3.new(1,1,1))
&#9;&#9;for i,cside in ipairs(ClientSides) do
&#9;&#9;&#9;local player = cside[1]
&#9;&#9;&#9;local client = Server:clone()
&#9;&#9;&#9;client.Name = &quot;Client&quot;
&#9;&#9;&#9;client.Text = player.Name
&#9;&#9;&#9;client.TextColor3 = (SelectedSide == player and Color3.new(0,1,0) or Color3.new(1,1,1))
&#9;&#9;&#9;client.FontSize = &quot;Size18&quot;
&#9;&#9;&#9;client.Position = UDim2.new(0,0,0,Server.AbsoluteSize.y*(i-1))
&#9;&#9;&#9;client.Parent = content
&#9;&#9;&#9;client.MouseButton1Down:connect(function()
&#9;&#9;&#9;&#9;SelectedSide = player
&#9;&#9;&#9;&#9;SelectedData = nil
&#9;&#9;&#9;&#9;SelectSide.UpdateList()
&#9;&#9;&#9;&#9;Output.UpdateList()
&#9;&#9;&#9;&#9;DataInfo.UpdateList()
&#9;&#9;&#9;end)
&#9;&#9;end
&#9;
&#9;&#9;SelectSide.listSize = #ClientSides * Server.AbsoluteSize.y
&#9;&#9;SelectSide.UpdateScroll()
&#9;end
&#9;
&#9;Server.MouseButton1Down:connect(function()
&#9;&#9;SelectedSide = ServerSide
&#9;&#9;SelectedData = nil
&#9;&#9;SelectSide.UpdateList()
&#9;&#9;Output.UpdateList()
&#9;&#9;DataInfo.UpdateList()
&#9;end)
&#9;
&#9;SelectSide.UpdateList()
&#9;
&#9;
&#9;--- OutputFrame
&#9;local OutputFrame = Main.Output
&#9;local OutputTemplate = OutputFrame.Template
&#9;Output = ScrollSystem(OutputFrame.List.Content,OutputFrame.Scroll,mDrag)
&#9;
&#9;Output.UpdateList = function()
&#9;&#9;local content = Output.Content
&#9;&#9;
&#9;&#9;content:ClearAllChildren()
&#9;&#9;Output.listSize = 0
&#9;&#9;
&#9;&#9;for index,data in ipairs(SelectedSide == ServerSide and ServerSide or ClientSides[SelectedSide][2]) do
&#9;&#9;&#9;local output = OutputTemplate:clone()
&#9;&#9;&#9;output.Name = &quot;OutputButton&quot;
&#9;&#9;&#9;output.Text = data[1][1]
&#9;&#9;&#9;output.TextColor3 = Color3.new(unpack(textColor[data[2]]))
&#9;&#9;&#9;output.BackgroundColor3 = Color3.new(unpack(backgroundColor[data[2]]))
&#9;&#9;&#9;output.BackgroundTransparency = ((SelectedData and SelectedData[1] == index) and 0.75 or 1)
&#9;&#9;&#9;output.Parent = content
&#9;&#9;&#9;output.Size = UDim2.new(1,0,0,output.TextBounds.y+4)
&#9;&#9;&#9;output.Position = UDim2.new(0,0,0,Output.listSize)
&#9;&#9;&#9;output.Visible = true
&#9;&#9;&#9;
&#9;&#9;&#9;output.MouseButton1Down:connect(function()
&#9;&#9;&#9;&#9;if data[2] == &quot;Note&quot; then return end
&#9;&#9;&#9;&#9;SelectedData = not(SelectedData and SelectedData[1] == index) and {index,data[1]} or nil
&#9;&#9;&#9;&#9;Output.UpdateList()
&#9;&#9;&#9;&#9;DataInfo.UpdateList()
&#9;&#9;&#9;end)
&#9;&#9;&#9;
&#9;&#9;&#9;output.MouseEnter:connect(function()
&#9;&#9;&#9;&#9;if data[2] == &quot;Note&quot; or (SelectedData and SelectedData[1] == index) then return end
&#9;&#9;&#9;&#9;output.BackgroundTransparency = 0.85
&#9;&#9;&#9;&#9;output.MouseLeave:wait()
&#9;&#9;&#9;&#9;output.BackgroundTransparency = 1
&#9;&#9;&#9;end)
&#9;&#9;&#9;
&#9;&#9;&#9;Output.listSize = Output.listSize + output.AbsoluteSize.y
&#9;&#9;end
&#9;&#9;
&#9;&#9;Output.UpdateScroll()
&#9;end
&#9;
&#9;Output.UpdateList()
&#9;
&#9;
&#9;-- DataInfo
&#9;local DataInfoFrame = Main.DataInfo
&#9;local Title = DataInfoFrame.Title
&#9;local ScriptStatus = DataInfoFrame.ScriptStatus
&#9;local StackFrame = DataInfoFrame.Stack
&#9;DataInfo = ScrollSystem(StackFrame.List.Content,StackFrame.Scroll,mDrag)
&#9; 
&#9;DataInfo.UpdateList = function()
&#9;&#9;local content = DataInfo.Content
&#9;&#9;
&#9;&#9;if SelectedData then
&#9;&#9;&#9;local outputText,stack,script = unpack(SelectedData[2])
&#9;&#9;&#9;Title.Text = &quot;In &quot;..script[2]..&quot; &apos;&quot;..script[1]..&quot;&apos;&quot;
&#9;&#9;&#9;Title.TextColor3 = Color3.new(85/255,170/255,1)
&#9;&#9;&#9;content.Text = &quot;Stack trace:\n&quot;..stack:gsub(&quot;[^\n]+, &quot;,&quot;\t&quot;)
&#9;&#9;&#9;content.TextColor3 =  Color3.new(220/255,1,1)
&#9;&#9;&#9;ScriptStatus.Text = script[3] and (&quot;Script &quot;..(script[3].Disabled and &quot;Disabled&quot; or &quot;Enabled&quot;)) or &quot;ScriptStatus Failed&quot;
&#9;&#9;&#9;ScriptStatus.TextColor3 = script[3] and Color3.new(220/255,1,1) or Color3.new(127/255,127/255,127/255)
&#9;&#9;&#9;ScriptStatus.AutoButtonColor = not not script[3]
&#9;&#9;&#9;ScriptStatus.Selected = (not not script[3]) and (not script[3].Disabled)
&#9;&#9;else
&#9;&#9;&#9;Title.Text = &quot;No data selected&quot;
&#9;&#9;&#9;Title.TextColor3 = Color3.new(127/255,127/255,127/255)
&#9;&#9;&#9;content.Text = &quot;Stack trace:&quot;
&#9;&#9;&#9;content.TextColor3 = Color3.new(127/255,127/255,127/255)
&#9;&#9;&#9;ScriptStatus.Text = &quot;ScriptStatus&quot;
&#9;&#9;&#9;ScriptStatus.TextColor3 = Color3.new(127/255,127/255,127/255)
&#9;&#9;&#9;ScriptStatus.AutoButtonColor = false
&#9;&#9;&#9;ScriptStatus.Selected = false
&#9;&#9;end&#9;
&#9;&#9;
&#9;&#9;DataInfo.listSize = (({content.Text:gsub(&quot;line&quot;,&quot;%1&quot;)})[2]+1)*tostring(content.FontSize):match(&quot;(%d+)&quot;)
&#9;&#9;DataInfo.UpdateScroll()
&#9;end
&#9;
&#9;ScriptStatus.MouseButton1Down:connect(function()
&#9;&#9;local scriptObj = SelectedData and SelectedData[2][3][3]
&#9;&#9;if scriptObj then
&#9;&#9;&#9;scriptObj.Disabled = not scriptObj.Disabled
&#9;&#9;&#9;DataInfo.UpdateList()
&#9;&#9;end
&#9;end)
&#9;
&#9;DataInfo.UpdateList()
&#9;
&#9;
&#9;-- Drag/CloseOpen events
&#9;Header.MouseButton1Down:connect(function(x,y)
&#9;&#9;local xPos = x-Main.AbsolutePosition.x
&#9;&#9;local yPos = y-Main.AbsolutePosition.y
&#9;&#9;local conDrag = mDrag.MouseMoved:connect(function(x,y)
&#9;&#9;&#9;Main.Position = UDim2.new(0,x-xPos,0,y-yPos)
&#9;&#9;end)
&#9;&#9;newThread(function()
&#9;&#9;&#9;mDrag.MouseButton1Up:wait()
&#9;&#9;&#9;mDrag.Visible = false
&#9;&#9;&#9;conDrag:disconnect()
&#9;&#9;end)
&#9;&#9;mDrag.Visible = true
&#9;end)
&#9;
&#9;Header.Parent.Exit.MouseButton1Down:connect(function()
&#9;&#9;Main.Visible = not Main.Visible
&#9;&#9;OpenClose.Text = (Main.Visible and &quot;Close&quot; or &quot;Open&quot;)..&quot; Output (F8)&quot;
&#9;end)
&#9;
&#9;OpenClose.MouseButton1Down:connect(function()
&#9;&#9;Main.Visible = not Main.Visible
&#9;&#9;OpenClose.Text = (Main.Visible and &quot;Close&quot; or &quot;Open&quot;)..&quot; Output (F8)&quot;
&#9;end)
&#9;
&#9;OpenClose.Text = (Main.Visible and &quot;Close&quot; or &quot;Open&quot;)..&quot; Output (F8)&quot;
&#9;OpenClose.Visible = true
&#9;
end

Player.CharacterAdded:connect(StartOutputGUI)

StartOutputGUI()

-----------------------------------------

OCServer.OnClientEvent:connect(function(sideType,info,player)
&#9;local data,num = unpack(info)
&#9;local updatedSide;
&#9;if sideType == &quot;Server&quot; then
&#9;&#9;if num &gt; #ServerSide then
&#9;&#9;&#9;table.insert(ServerSide,data)
&#9;&#9;&#9;updatedSide = ServerSide
&#9;&#9;end
&#9;elseif sideType == &quot;Client&quot; then
&#9;&#9;if num &gt; #ClientSides[player][2] then
&#9;&#9;&#9;table.insert(ClientSides[player][2],data)
&#9;&#9;&#9;updatedSide = player
&#9;&#9;end
&#9;end

&#9;if updatedSide == SelectedSide then
&#9;&#9;Output.UpdateList()
&#9;end
end)


Players.ChildAdded:connect(function(player)
&#9;if player:IsA(&quot;Player&quot;) then
&#9;&#9;table.insert(ClientSides,{player,{}})
&#9;&#9;SelectSide.UpdateList()
&#9;end
end)

Players.ChildRemoved:connect(function(player)
&#9;if player:IsA(&quot;Player&quot;) then
&#9;&#9;table.remove(ClientSides,ClientSides[player][1])
&#9;&#9;if SelectedSide == player then
&#9;&#9;&#9;SelectedSide = ServerSide
&#9;&#9;end
&#9;&#9;SelectSide.UpdateList()
&#9;&#9;Output.UpdateList()
&#9;end
end)

Player:GetMouse().KeyDown:connect(function(key)
&#9;if key:byte() == 33 then
&#9;&#9;Main.Visible = not Main.Visible
&#9;&#9;OpenClose.Text = (Main.Visible and &quot;Close&quot; or &quot;Open&quot;)..&quot; Output&quot;
&#9;end
end)</ProtectedString>
			</Properties>
		</Item>
		<Item class="RemoteEvent" referent="RBXB43B2FD6DF72422D95C6688062DEE1CC">
			<Properties>
				<string name="Name">OCServer</string>
			</Properties>
			<Item class="Model" referent="RBX64B8AFD2AFF847C2BE4A388316B1283A">
				<Properties>
					<CoordinateFrame name="ModelInPrimary">
						<X>0</X>
						<Y>0</Y>
						<Z>0</Z>
						<R00>1</R00>
						<R01>0</R01>
						<R02>0</R02>
						<R10>0</R10>
						<R11>1</R11>
						<R12>0</R12>
						<R20>0</R20>
						<R21>0</R21>
						<R22>1</R22>
					</CoordinateFrame>
					<string name="Name">Storage</string>
					<Ref name="PrimaryPart">null</Ref>
				</Properties>
				<Item class="ScreenGui" referent="RBXEFF9A0EAF88B413B8E17297D5450420F">
					<Properties>
						<string name="Name">OutputGUI</string>
					</Properties>
					<Item class="Frame" referent="RBX9CB2184A5C56417C9E19E6690B62B0DC">
						<Properties>
							<bool name="Active">true</bool>
							<Color3 name="BackgroundColor3">4294945280</Color3>
							<float name="BackgroundTransparency">0</float>
							<Color3 name="BorderColor3">4279970357</Color3>
							<int name="BorderSizePixel">1</int>
							<bool name="ClipsDescendants">false</bool>
							<bool name="Draggable">false</bool>
							<string name="Name">Main</string>
							<UDim2 name="Position">
								<XS>0.5</XS>
								<XO>-350</XO>
								<YS>0.5</YS>
								<YO>-185</YO>
							</UDim2>
							<float name="Rotation">0</float>
							<UDim2 name="Size">
								<XS>0</XS>
								<XO>700</XO>
								<YS>0</YS>
								<YO>350</YO>
							</UDim2>
							<token name="SizeConstraint">0</token>
							<token name="Style">2</token>
							<bool name="Visible">false</bool>
							<int name="ZIndex">9</int>
						</Properties>
						<Item class="Frame" referent="RBXAC55EDE765374DFE84B82F69740F5A86">
							<Properties>
								<bool name="Active">false</bool>
								<Color3 name="BackgroundColor3">4278190080</Color3>
								<float name="BackgroundTransparency">1</float>
								<Color3 name="BorderColor3">4279970357</Color3>
								<int name="BorderSizePixel">1</int>
								<bool name="ClipsDescendants">false</bool>
								<bool name="Draggable">false</bool>
								<string name="Name">Header</string>
								<UDim2 name="Position">
									<XS>0.239999995</XS>
									<XO>0</XO>
									<YS>0</YS>
									<YO>0</YO>
								</UDim2>
								<float name="Rotation">0</float>
								<UDim2 name="Size">
									<XS>0.75999999</XS>
									<XO>0</XO>
									<YS>0</YS>
									<YO>35</YO>
								</UDim2>
								<token name="SizeConstraint">0</token>
								<token name="Style">0</token>
								<bool name="Visible">true</bool>
								<int name="ZIndex">9</int>
							</Properties>
							<Item class="TextButton" referent="RBX675F6EEB92C649CFBE6A9A25F89499E1">
								<Properties>
									<bool name="Active">true</bool>
									<bool name="AutoButtonColor">true</bool>
									<Color3 name="BackgroundColor3">4288914085</Color3>
									<float name="BackgroundTransparency">0</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">1</int>
									<bool name="ClipsDescendants">false</bool>
									<bool name="Draggable">false</bool>
									<token name="Font">0</token>
									<token name="FontSize">0</token>
									<bool name="Modal">false</bool>
									<string name="Name">Exit</string>
									<UDim2 name="Position">
										<XS>1</XS>
										<XO>-32</XO>
										<YS>0</YS>
										<YO>-2</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<bool name="Selected">false</bool>
									<UDim2 name="Size">
										<XS>0</XS>
										<XO>34</XO>
										<YS>0</YS>
										<YO>34</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<token name="Style">1</token>
									<string name="Text"></string>
									<Color3 name="TextColor3">4279970357</Color3>
									<bool name="TextScaled">false</bool>
									<Color3 name="TextStrokeColor3">4278190080</Color3>
									<float name="TextStrokeTransparency">1</float>
									<float name="TextTransparency">0</float>
									<bool name="TextWrapped">false</bool>
									<token name="TextXAlignment">2</token>
									<token name="TextYAlignment">1</token>
									<bool name="Visible">true</bool>
									<int name="ZIndex">9</int>
								</Properties>
								<Item class="ImageLabel" referent="RBXDD75E2A863094CC4B0D5EB570976A623">
									<Properties>
										<bool name="Active">false</bool>
										<Color3 name="BackgroundColor3">4288914085</Color3>
										<float name="BackgroundTransparency">1</float>
										<Color3 name="BorderColor3">4279970357</Color3>
										<int name="BorderSizePixel">1</int>
										<bool name="ClipsDescendants">false</bool>
										<bool name="Draggable">false</bool>
										<Content name="Image"><url>http://www.roblox.com/asset?id=54135717</url></Content>
										<Color3 name="ImageColor3">4294967295</Color3>
										<Vector2 name="ImageRectOffset">
											<X>0</X>
											<Y>0</Y>
										</Vector2>
										<Vector2 name="ImageRectSize">
											<X>0</X>
											<Y>0</Y>
										</Vector2>
										<float name="ImageTransparency">0</float>
										<string name="Name">Image</string>
										<UDim2 name="Position">
											<XS>0</XS>
											<XO>-2</XO>
											<YS>0</YS>
											<YO>-2</YO>
										</UDim2>
										<float name="Rotation">0</float>
										<UDim2 name="Size">
											<XS>0</XS>
											<XO>16</XO>
											<YS>0</YS>
											<YO>16</YO>
										</UDim2>
										<token name="SizeConstraint">0</token>
										<bool name="Visible">true</bool>
										<int name="ZIndex">9</int>
									</Properties>
								</Item>
							</Item>
							<Item class="TextButton" referent="RBX7901FCA05FB64314A4153D15DA5A724F">
								<Properties>
									<bool name="Active">true</bool>
									<bool name="AutoButtonColor">true</bool>
									<Color3 name="BackgroundColor3">4281677109</Color3>
									<float name="BackgroundTransparency">1</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">1</int>
									<bool name="ClipsDescendants">false</bool>
									<bool name="Draggable">false</bool>
									<token name="Font">2</token>
									<token name="FontSize">8</token>
									<bool name="Modal">false</bool>
									<string name="Name">Title</string>
									<UDim2 name="Position">
										<XS>0</XS>
										<XO>0</XO>
										<YS>0</YS>
										<YO>0</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<bool name="Selected">false</bool>
									<UDim2 name="Size">
										<XS>1</XS>
										<XO>-36</XO>
										<YS>1</YS>
										<YO>0</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<token name="Style">0</token>
									<string name="Text">Local Errors: oxcool1</string>
									<Color3 name="TextColor3">4294967295</Color3>
									<bool name="TextScaled">false</bool>
									<Color3 name="TextStrokeColor3">4278190080</Color3>
									<float name="TextStrokeTransparency">1</float>
									<float name="TextTransparency">0</float>
									<bool name="TextWrapped">false</bool>
									<token name="TextXAlignment">0</token>
									<token name="TextYAlignment">1</token>
									<bool name="Visible">true</bool>
									<int name="ZIndex">9</int>
								</Properties>
							</Item>
						</Item>
						<Item class="Frame" referent="RBXB57B19B88F0848208E7F73BC5A75C943">
							<Properties>
								<bool name="Active">false</bool>
								<Color3 name="BackgroundColor3">4278190080</Color3>
								<float name="BackgroundTransparency">1</float>
								<Color3 name="BorderColor3">4279970357</Color3>
								<int name="BorderSizePixel">1</int>
								<bool name="ClipsDescendants">false</bool>
								<bool name="Draggable">false</bool>
								<string name="Name">Output</string>
								<UDim2 name="Position">
									<XS>0.239999995</XS>
									<XO>-1</XO>
									<YS>0</YS>
									<YO>36</YO>
								</UDim2>
								<float name="Rotation">0</float>
								<UDim2 name="Size">
									<XS>0.75999999</XS>
									<XO>0</XO>
									<YS>0.649999976</YS>
									<YO>0</YO>
								</UDim2>
								<token name="SizeConstraint">0</token>
								<token name="Style">0</token>
								<bool name="Visible">true</bool>
								<int name="ZIndex">9</int>
							</Properties>
							<Item class="Frame" referent="RBX029A070B0B3D4AE7A4EA6472CB6BB1E4">
								<Properties>
									<bool name="Active">false</bool>
									<Color3 name="BackgroundColor3">4294967295</Color3>
									<float name="BackgroundTransparency">0</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">1</int>
									<bool name="ClipsDescendants">true</bool>
									<bool name="Draggable">false</bool>
									<string name="Name">List</string>
									<UDim2 name="Position">
										<XS>0</XS>
										<XO>0</XO>
										<YS>0</YS>
										<YO>0</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<UDim2 name="Size">
										<XS>1</XS>
										<XO>-18</XO>
										<YS>1</YS>
										<YO>0</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<token name="Style">3</token>
									<bool name="Visible">true</bool>
									<int name="ZIndex">9</int>
								</Properties>
								<Item class="Frame" referent="RBX504C9E6926274E3D966522CCCB7DB2A4">
									<Properties>
										<bool name="Active">false</bool>
										<Color3 name="BackgroundColor3">4288914085</Color3>
										<float name="BackgroundTransparency">1</float>
										<Color3 name="BorderColor3">4279970357</Color3>
										<int name="BorderSizePixel">1</int>
										<bool name="ClipsDescendants">false</bool>
										<bool name="Draggable">false</bool>
										<string name="Name">Content</string>
										<UDim2 name="Position">
											<XS>0</XS>
											<XO>0</XO>
											<YS>0</YS>
											<YO>0</YO>
										</UDim2>
										<float name="Rotation">0</float>
										<UDim2 name="Size">
											<XS>1</XS>
											<XO>0</XO>
											<YS>1</YS>
											<YO>0</YO>
										</UDim2>
										<token name="SizeConstraint">0</token>
										<token name="Style">0</token>
										<bool name="Visible">true</bool>
										<int name="ZIndex">9</int>
									</Properties>
									<Item class="TextButton" referent="RBX5238C9545F6E42608D52BE4CE9C90BBB">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>0</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX61799418FA8E44AFB916AA0B6B86D6FE">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX5C6A9D024E3643F79E8846E17FD2CC46">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>36</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX822BB152CE374DB69EB3DEFDE45C6A4E">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>54</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBXA2F31F15CD834BF1A7F21B4B10368445">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>72</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX94AFF068E3844E9EBEE779E05CBBBFD8">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>90</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata, by oxcool1</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBXE019DFF9B8E5451EBD1164702862D301">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>108</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBXAD240A40282545469763F140FF199D16">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>126</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBXA62978A3B8CF40E2AD63432702876333">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>144</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>32</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript.Player.Player2.MainNoob.Player123:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX2C354286A13D4897AB34BD7E01525F66">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>176</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX7B9492BF6A9E406DA37630E9FFA9CB16">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>194</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX21964DEF0161459A8F2BCCF3F0E293B8">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>212</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX02737B0EC8FC41F49C7C5C2FA94E80A7">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>230</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX11D9819D9FCF4F129D63BD0470EA5E21">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>248</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX9138C7D35D444276BA7E96A716DD69B4">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>266</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX0AF1DF8576C04CDEA96954CA78E203A9">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>284</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX8D0803AFE7DF4A2E92FD4E88C82BFDF1">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>302</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX8EA15F933D03495E81E5BF3291FE6677">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>320</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBXA4C27912252C46C5B0D99743C986A90D">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>338</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBXF0E069785C98459090BE59028BAC0205">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>356</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
									<Item class="TextButton" referent="RBX996ADC9777B14E3283544095DC1B9D50">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">false</bool>
											<Color3 name="BackgroundColor3">4294945280</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<bool name="Modal">false</bool>
											<string name="Name">Error</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>374</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>18</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<string name="Text">08:04:39.684 - Players.MainScript:25: attempt to compare number with userdata</string>
											<Color3 name="TextColor3">4294901760</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">true</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
								</Item>
							</Item>
							<Item class="Frame" referent="RBX14D8A7FC39B14DA8B43F426EB90CFF98">
								<Properties>
									<bool name="Active">false</bool>
									<Color3 name="BackgroundColor3">4288914085</Color3>
									<float name="BackgroundTransparency">1</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">1</int>
									<bool name="ClipsDescendants">false</bool>
									<bool name="Draggable">false</bool>
									<string name="Name">Scroll</string>
									<UDim2 name="Position">
										<XS>1</XS>
										<XO>-16</XO>
										<YS>0</YS>
										<YO>0</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<UDim2 name="Size">
										<XS>0</XS>
										<XO>18</XO>
										<YS>1</YS>
										<YO>0</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<token name="Style">0</token>
									<bool name="Visible">true</bool>
									<int name="ZIndex">9</int>
								</Properties>
								<Item class="ImageButton" referent="RBXF8C20F0EC0264924822EC932557A29AD">
									<Properties>
										<bool name="Active">false</bool>
										<bool name="AutoButtonColor">true</bool>
										<Color3 name="BackgroundColor3">4288914085</Color3>
										<float name="BackgroundTransparency">0</float>
										<Color3 name="BorderColor3">4279970357</Color3>
										<int name="BorderSizePixel">1</int>
										<bool name="ClipsDescendants">false</bool>
										<bool name="Draggable">false</bool>
										<Content name="Image"><null></null></Content>
										<Color3 name="ImageColor3">4294967295</Color3>
										<Vector2 name="ImageRectOffset">
											<X>0</X>
											<Y>0</Y>
										</Vector2>
										<Vector2 name="ImageRectSize">
											<X>0</X>
											<Y>0</Y>
										</Vector2>
										<float name="ImageTransparency">0</float>
										<bool name="Modal">false</bool>
										<string name="Name">Up</string>
										<UDim2 name="Position">
											<XS>0</XS>
											<XO>0</XO>
											<YS>0</YS>
											<YO>0</YO>
										</UDim2>
										<float name="Rotation">0</float>
										<bool name="Selected">false</bool>
										<UDim2 name="Size">
											<XS>0</XS>
											<XO>18</XO>
											<YS>0</YS>
											<YO>18</YO>
										</UDim2>
										<token name="SizeConstraint">0</token>
										<token name="Style">2</token>
										<bool name="Visible">true</bool>
										<int name="ZIndex">8</int>
									</Properties>
									<Item class="ImageLabel" referent="RBXD9CB0552D2A0410293B9607C58FCFD72">
										<Properties>
											<bool name="Active">false</bool>
											<Color3 name="BackgroundColor3">4288914085</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<Content name="Image"><url>http://www.roblox.com/asset/?id=112365584</url></Content>
											<Color3 name="ImageColor3">4294967295</Color3>
											<Vector2 name="ImageRectOffset">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<Vector2 name="ImageRectSize">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<float name="ImageTransparency">0</float>
											<string name="Name">ImageLabel</string>
											<UDim2 name="Position">
												<XS>0.5</XS>
												<XO>-8</XO>
												<YS>0.5</YS>
												<YO>-8</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<UDim2 name="Size">
												<XS>0</XS>
												<XO>16</XO>
												<YS>0</YS>
												<YO>16</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">8</int>
										</Properties>
									</Item>
								</Item>
								<Item class="ImageButton" referent="RBXADF2E93BD1164D4F8928517258E0C33D">
									<Properties>
										<bool name="Active">true</bool>
										<bool name="AutoButtonColor">true</bool>
										<Color3 name="BackgroundColor3">4288914085</Color3>
										<float name="BackgroundTransparency">0</float>
										<Color3 name="BorderColor3">4279970357</Color3>
										<int name="BorderSizePixel">1</int>
										<bool name="ClipsDescendants">false</bool>
										<bool name="Draggable">false</bool>
										<Content name="Image"><null></null></Content>
										<Color3 name="ImageColor3">4294967295</Color3>
										<Vector2 name="ImageRectOffset">
											<X>0</X>
											<Y>0</Y>
										</Vector2>
										<Vector2 name="ImageRectSize">
											<X>0</X>
											<Y>0</Y>
										</Vector2>
										<float name="ImageTransparency">0</float>
										<bool name="Modal">false</bool>
										<string name="Name">Down</string>
										<UDim2 name="Position">
											<XS>0</XS>
											<XO>0</XO>
											<YS>1</YS>
											<YO>-18</YO>
										</UDim2>
										<float name="Rotation">180</float>
										<bool name="Selected">false</bool>
										<UDim2 name="Size">
											<XS>0</XS>
											<XO>18</XO>
											<YS>0</YS>
											<YO>18</YO>
										</UDim2>
										<token name="SizeConstraint">0</token>
										<token name="Style">2</token>
										<bool name="Visible">true</bool>
										<int name="ZIndex">9</int>
									</Properties>
									<Item class="ImageLabel" referent="RBX7AFD1F6511584DA7B6755A451D7B7BBB">
										<Properties>
											<bool name="Active">false</bool>
											<Color3 name="BackgroundColor3">4288914085</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<Content name="Image"><url>http://www.roblox.com/asset/?id=112365584</url></Content>
											<Color3 name="ImageColor3">4294967295</Color3>
											<Vector2 name="ImageRectOffset">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<Vector2 name="ImageRectSize">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<float name="ImageTransparency">0</float>
											<string name="Name">ImageLabel</string>
											<UDim2 name="Position">
												<XS>0.5</XS>
												<XO>-8</XO>
												<YS>0.5</YS>
												<YO>-8</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<UDim2 name="Size">
												<XS>0</XS>
												<XO>16</XO>
												<YS>0</YS>
												<YO>16</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
								</Item>
								<Item class="Frame" referent="RBX72AA5E228153495AA8E67A03A99A877C">
									<Properties>
										<bool name="Active">false</bool>
										<Color3 name="BackgroundColor3">4294967295</Color3>
										<float name="BackgroundTransparency">1</float>
										<Color3 name="BorderColor3">4279970357</Color3>
										<int name="BorderSizePixel">1</int>
										<bool name="ClipsDescendants">false</bool>
										<bool name="Draggable">false</bool>
										<string name="Name">Bar</string>
										<UDim2 name="Position">
											<XS>0</XS>
											<XO>0</XO>
											<YS>0</YS>
											<YO>18</YO>
										</UDim2>
										<float name="Rotation">0</float>
										<UDim2 name="Size">
											<XS>0</XS>
											<XO>18</XO>
											<YS>1</YS>
											<YO>-36</YO>
										</UDim2>
										<token name="SizeConstraint">0</token>
										<token name="Style">0</token>
										<bool name="Visible">true</bool>
										<int name="ZIndex">9</int>
									</Properties>
									<Item class="ImageButton" referent="RBX020497FF49DB4ECAB7A9F4E3F8452510">
										<Properties>
											<bool name="Active">true</bool>
											<bool name="AutoButtonColor">true</bool>
											<Color3 name="BackgroundColor3">4288914085</Color3>
											<float name="BackgroundTransparency">0</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<Content name="Image"><null></null></Content>
											<Color3 name="ImageColor3">4294967295</Color3>
											<Vector2 name="ImageRectOffset">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<Vector2 name="ImageRectSize">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<float name="ImageTransparency">0</float>
											<bool name="Modal">false</bool>
											<string name="Name">Drag</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>0</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>128</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">2</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
										<Item class="TextLabel" referent="RBX1D128901F94A494D855A26899948F63A">
											<Properties>
												<bool name="Active">false</bool>
												<Color3 name="BackgroundColor3">4294967295</Color3>
												<float name="BackgroundTransparency">1</float>
												<Color3 name="BorderColor3">4279970357</Color3>
												<int name="BorderSizePixel">1</int>
												<bool name="ClipsDescendants">false</bool>
												<bool name="Draggable">false</bool>
												<token name="Font">0</token>
												<token name="FontSize">2</token>
												<string name="Name">Sign</string>
												<UDim2 name="Position">
													<XS>0</XS>
													<XO>0</XO>
													<YS>0.5</YS>
													<YO>-9</YO>
												</UDim2>
												<float name="Rotation">0</float>
												<UDim2 name="Size">
													<XS>0</XS>
													<XO>6</XO>
													<YS>0</YS>
													<YO>15</YO>
												</UDim2>
												<token name="SizeConstraint">0</token>
												<string name="Text">=</string>
												<Color3 name="TextColor3">4294967295</Color3>
												<bool name="TextScaled">false</bool>
												<Color3 name="TextStrokeColor3">4278190080</Color3>
												<float name="TextStrokeTransparency">1</float>
												<float name="TextTransparency">0</float>
												<bool name="TextWrapped">false</bool>
												<token name="TextXAlignment">2</token>
												<token name="TextYAlignment">1</token>
												<bool name="Visible">true</bool>
												<int name="ZIndex">9</int>
											</Properties>
										</Item>
									</Item>
								</Item>
							</Item>
							<Item class="TextButton" referent="RBXFA52E86A04BC46C9B6055ED58B0851C6">
								<Properties>
									<bool name="Active">false</bool>
									<bool name="AutoButtonColor">false</bool>
									<Color3 name="BackgroundColor3">4294945280</Color3>
									<float name="BackgroundTransparency">1</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">1</int>
									<bool name="ClipsDescendants">false</bool>
									<bool name="Draggable">false</bool>
									<token name="Font">2</token>
									<token name="FontSize">5</token>
									<bool name="Modal">false</bool>
									<string name="Name">Template</string>
									<UDim2 name="Position">
										<XS>0</XS>
										<XO>0</XO>
										<YS>0</YS>
										<YO>0</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<bool name="Selected">false</bool>
									<UDim2 name="Size">
										<XS>1</XS>
										<XO>0</XO>
										<YS>1</YS>
										<YO>0</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<token name="Style">0</token>
									<string name="Text"></string>
									<Color3 name="TextColor3">4294901760</Color3>
									<bool name="TextScaled">false</bool>
									<Color3 name="TextStrokeColor3">4278190080</Color3>
									<float name="TextStrokeTransparency">1</float>
									<float name="TextTransparency">0</float>
									<bool name="TextWrapped">true</bool>
									<token name="TextXAlignment">0</token>
									<token name="TextYAlignment">0</token>
									<bool name="Visible">false</bool>
									<int name="ZIndex">9</int>
								</Properties>
							</Item>
						</Item>
						<Item class="Frame" referent="RBXC4E982B14FB44B44B6A24B9A3FEBD519">
							<Properties>
								<bool name="Active">false</bool>
								<Color3 name="BackgroundColor3">4278190080</Color3>
								<float name="BackgroundTransparency">0.699999988</float>
								<Color3 name="BorderColor3">4279970357</Color3>
								<int name="BorderSizePixel">1</int>
								<bool name="ClipsDescendants">false</bool>
								<bool name="Draggable">false</bool>
								<string name="Name">DataInfo</string>
								<UDim2 name="Position">
									<XS>0.239999995</XS>
									<XO>0</XO>
									<YS>0.649999976</YS>
									<YO>40</YO>
								</UDim2>
								<float name="Rotation">0</float>
								<UDim2 name="Size">
									<XS>0.75999999</XS>
									<XO>0</XO>
									<YS>0.349999994</YS>
									<YO>-40</YO>
								</UDim2>
								<token name="SizeConstraint">0</token>
								<token name="Style">0</token>
								<bool name="Visible">true</bool>
								<int name="ZIndex">9</int>
							</Properties>
							<Item class="TextButton" referent="RBXA041C9FDF8C340E6833503A9422CE5D8">
								<Properties>
									<bool name="Active">true</bool>
									<bool name="AutoButtonColor">true</bool>
									<Color3 name="BackgroundColor3">4288914085</Color3>
									<float name="BackgroundTransparency">1</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">1</int>
									<bool name="ClipsDescendants">false</bool>
									<bool name="Draggable">false</bool>
									<token name="Font">1</token>
									<token name="FontSize">6</token>
									<bool name="Modal">false</bool>
									<string name="Name">ScriptStatus</string>
									<UDim2 name="Position">
										<XS>1</XS>
										<XO>-201</XO>
										<YS>0</YS>
										<YO>17</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<bool name="Selected">false</bool>
									<UDim2 name="Size">
										<XS>0</XS>
										<XO>200</XO>
										<YS>1</YS>
										<YO>-25</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<token name="Style">2</token>
									<string name="Text">Disable Script</string>
									<Color3 name="TextColor3">4286545791</Color3>
									<bool name="TextScaled">false</bool>
									<Color3 name="TextStrokeColor3">4278190080</Color3>
									<float name="TextStrokeTransparency">1</float>
									<float name="TextTransparency">0</float>
									<bool name="TextWrapped">false</bool>
									<token name="TextXAlignment">2</token>
									<token name="TextYAlignment">1</token>
									<bool name="Visible">true</bool>
									<int name="ZIndex">9</int>
								</Properties>
							</Item>
							<Item class="TextLabel" referent="RBXCEB00302C14E48ECA618D0802FD47574">
								<Properties>
									<bool name="Active">false</bool>
									<Color3 name="BackgroundColor3">4288914085</Color3>
									<float name="BackgroundTransparency">1</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">0</int>
									<bool name="ClipsDescendants">false</bool>
									<bool name="Draggable">false</bool>
									<token name="Font">2</token>
									<token name="FontSize">5</token>
									<string name="Name">Title</string>
									<UDim2 name="Position">
										<XS>0</XS>
										<XO>0</XO>
										<YS>0</YS>
										<YO>0</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<UDim2 name="Size">
										<XS>1</XS>
										<XO>0</XO>
										<YS>0</YS>
										<YO>14</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<string name="Text">No data selected</string>
									<Color3 name="TextColor3">4286545791</Color3>
									<bool name="TextScaled">false</bool>
									<Color3 name="TextStrokeColor3">4278190080</Color3>
									<float name="TextStrokeTransparency">1</float>
									<float name="TextTransparency">0</float>
									<bool name="TextWrapped">true</bool>
									<token name="TextXAlignment">0</token>
									<token name="TextYAlignment">0</token>
									<bool name="Visible">true</bool>
									<int name="ZIndex">9</int>
								</Properties>
							</Item>
							<Item class="Frame" referent="RBX3B4114899C5F480BB68E12F2AFB69038">
								<Properties>
									<bool name="Active">false</bool>
									<Color3 name="BackgroundColor3">4278190080</Color3>
									<float name="BackgroundTransparency">1</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">0</int>
									<bool name="ClipsDescendants">true</bool>
									<bool name="Draggable">false</bool>
									<string name="Name">Stack</string>
									<UDim2 name="Position">
										<XS>0</XS>
										<XO>3</XO>
										<YS>0</YS>
										<YO>18</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<UDim2 name="Size">
										<XS>1</XS>
										<XO>-209</XO>
										<YS>1</YS>
										<YO>-25</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<token name="Style">0</token>
									<bool name="Visible">true</bool>
									<int name="ZIndex">9</int>
								</Properties>
								<Item class="Frame" referent="RBX3591E6A9BE944BABA969AF83C99E2488">
									<Properties>
										<bool name="Active">false</bool>
										<Color3 name="BackgroundColor3">4288914085</Color3>
										<float name="BackgroundTransparency">1</float>
										<Color3 name="BorderColor3">4279970357</Color3>
										<int name="BorderSizePixel">1</int>
										<bool name="ClipsDescendants">false</bool>
										<bool name="Draggable">false</bool>
										<string name="Name">Scroll</string>
										<UDim2 name="Position">
											<XS>1</XS>
											<XO>-14</XO>
											<YS>0</YS>
											<YO>0</YO>
										</UDim2>
										<float name="Rotation">0</float>
										<UDim2 name="Size">
											<XS>0</XS>
											<XO>14</XO>
											<YS>1</YS>
											<YO>0</YO>
										</UDim2>
										<token name="SizeConstraint">0</token>
										<token name="Style">0</token>
										<bool name="Visible">true</bool>
										<int name="ZIndex">9</int>
									</Properties>
									<Item class="ImageButton" referent="RBXD8E78893B753473B8D81F7E88A2A9FE3">
										<Properties>
											<bool name="Active">true</bool>
											<bool name="AutoButtonColor">true</bool>
											<Color3 name="BackgroundColor3">4288914085</Color3>
											<float name="BackgroundTransparency">0</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<Content name="Image"><null></null></Content>
											<Color3 name="ImageColor3">4294967295</Color3>
											<Vector2 name="ImageRectOffset">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<Vector2 name="ImageRectSize">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<float name="ImageTransparency">0</float>
											<bool name="Modal">false</bool>
											<string name="Name">Up</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>0</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>0</XS>
												<XO>14</XO>
												<YS>0</YS>
												<YO>14</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">2</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
										<Item class="ImageLabel" referent="RBX8E61E6FDA4B34E5C879892E0D4E3E59B">
											<Properties>
												<bool name="Active">false</bool>
												<Color3 name="BackgroundColor3">4288914085</Color3>
												<float name="BackgroundTransparency">1</float>
												<Color3 name="BorderColor3">4279970357</Color3>
												<int name="BorderSizePixel">1</int>
												<bool name="ClipsDescendants">false</bool>
												<bool name="Draggable">false</bool>
												<Content name="Image"><url>http://www.roblox.com/asset/?id=112365584</url></Content>
												<Color3 name="ImageColor3">4294967295</Color3>
												<Vector2 name="ImageRectOffset">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<Vector2 name="ImageRectSize">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<float name="ImageTransparency">0</float>
												<string name="Name">ImageLabel</string>
												<UDim2 name="Position">
													<XS>0.5</XS>
													<XO>-6</XO>
													<YS>0.5</YS>
													<YO>-6</YO>
												</UDim2>
												<float name="Rotation">0</float>
												<UDim2 name="Size">
													<XS>0</XS>
													<XO>12</XO>
													<YS>0</YS>
													<YO>12</YO>
												</UDim2>
												<token name="SizeConstraint">0</token>
												<bool name="Visible">true</bool>
												<int name="ZIndex">9</int>
											</Properties>
										</Item>
									</Item>
									<Item class="Frame" referent="RBX9447E1F102C641A38C0C87382358D802">
										<Properties>
											<bool name="Active">false</bool>
											<Color3 name="BackgroundColor3">4294967295</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<string name="Name">Bar</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>14</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<UDim2 name="Size">
												<XS>0</XS>
												<XO>14</XO>
												<YS>1</YS>
												<YO>-28</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
										<Item class="ImageButton" referent="RBX0703ECD7D0D3446D88289C5FAD2EB897">
											<Properties>
												<bool name="Active">true</bool>
												<bool name="AutoButtonColor">true</bool>
												<Color3 name="BackgroundColor3">4288914085</Color3>
												<float name="BackgroundTransparency">0</float>
												<Color3 name="BorderColor3">4279970357</Color3>
												<int name="BorderSizePixel">1</int>
												<bool name="ClipsDescendants">false</bool>
												<bool name="Draggable">false</bool>
												<Content name="Image"><null></null></Content>
												<Color3 name="ImageColor3">4294967295</Color3>
												<Vector2 name="ImageRectOffset">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<Vector2 name="ImageRectSize">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<float name="ImageTransparency">0</float>
												<bool name="Modal">false</bool>
												<string name="Name">Drag</string>
												<UDim2 name="Position">
													<XS>0</XS>
													<XO>0</XO>
													<YS>0</YS>
													<YO>0</YO>
												</UDim2>
												<float name="Rotation">0</float>
												<bool name="Selected">false</bool>
												<UDim2 name="Size">
													<XS>1</XS>
													<XO>0</XO>
													<YS>1</YS>
													<YO>0</YO>
												</UDim2>
												<token name="SizeConstraint">0</token>
												<token name="Style">2</token>
												<bool name="Visible">true</bool>
												<int name="ZIndex">9</int>
											</Properties>
											<Item class="TextLabel" referent="RBX4B651DE3ABDF43DE8B77C52E650A2881">
												<Properties>
													<bool name="Active">false</bool>
													<Color3 name="BackgroundColor3">4294967295</Color3>
													<float name="BackgroundTransparency">1</float>
													<Color3 name="BorderColor3">4279970357</Color3>
													<int name="BorderSizePixel">1</int>
													<bool name="ClipsDescendants">false</bool>
													<bool name="Draggable">false</bool>
													<token name="Font">0</token>
													<token name="FontSize">2</token>
													<string name="Name">Sign</string>
													<UDim2 name="Position">
														<XS>0</XS>
														<XO>0</XO>
														<YS>0.5</YS>
														<YO>-9</YO>
													</UDim2>
													<float name="Rotation">0</float>
													<UDim2 name="Size">
														<XS>0</XS>
														<XO>4</XO>
														<YS>0</YS>
														<YO>15</YO>
													</UDim2>
													<token name="SizeConstraint">0</token>
													<string name="Text">=</string>
													<Color3 name="TextColor3">4294967295</Color3>
													<bool name="TextScaled">false</bool>
													<Color3 name="TextStrokeColor3">4278190080</Color3>
													<float name="TextStrokeTransparency">1</float>
													<float name="TextTransparency">0</float>
													<bool name="TextWrapped">false</bool>
													<token name="TextXAlignment">2</token>
													<token name="TextYAlignment">1</token>
													<bool name="Visible">true</bool>
													<int name="ZIndex">9</int>
												</Properties>
											</Item>
										</Item>
									</Item>
									<Item class="ImageButton" referent="RBXE9C77DAD1D754802BBECDF93FEA26356">
										<Properties>
											<bool name="Active">true</bool>
											<bool name="AutoButtonColor">true</bool>
											<Color3 name="BackgroundColor3">4288914085</Color3>
											<float name="BackgroundTransparency">0</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<Content name="Image"><null></null></Content>
											<Color3 name="ImageColor3">4294967295</Color3>
											<Vector2 name="ImageRectOffset">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<Vector2 name="ImageRectSize">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<float name="ImageTransparency">0</float>
											<bool name="Modal">false</bool>
											<string name="Name">Down</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>1</YS>
												<YO>-14</YO>
											</UDim2>
											<float name="Rotation">180</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>0</XS>
												<XO>14</XO>
												<YS>0</YS>
												<YO>14</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">2</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
										<Item class="ImageLabel" referent="RBX55557CC089E542DEB457324054E8AD3A">
											<Properties>
												<bool name="Active">false</bool>
												<Color3 name="BackgroundColor3">4288914085</Color3>
												<float name="BackgroundTransparency">1</float>
												<Color3 name="BorderColor3">4279970357</Color3>
												<int name="BorderSizePixel">1</int>
												<bool name="ClipsDescendants">false</bool>
												<bool name="Draggable">false</bool>
												<Content name="Image"><url>http://www.roblox.com/asset/?id=112365584</url></Content>
												<Color3 name="ImageColor3">4294967295</Color3>
												<Vector2 name="ImageRectOffset">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<Vector2 name="ImageRectSize">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<float name="ImageTransparency">0</float>
												<string name="Name">ImageLabel</string>
												<UDim2 name="Position">
													<XS>0.5</XS>
													<XO>-6</XO>
													<YS>0.5</YS>
													<YO>-6</YO>
												</UDim2>
												<float name="Rotation">0</float>
												<UDim2 name="Size">
													<XS>0</XS>
													<XO>12</XO>
													<YS>0</YS>
													<YO>12</YO>
												</UDim2>
												<token name="SizeConstraint">0</token>
												<bool name="Visible">true</bool>
												<int name="ZIndex">9</int>
											</Properties>
										</Item>
									</Item>
								</Item>
								<Item class="Frame" referent="RBXE4B62FC5A6AB41F49CFAF2E75EF869EB">
									<Properties>
										<bool name="Active">false</bool>
										<Color3 name="BackgroundColor3">4278190080</Color3>
										<float name="BackgroundTransparency">0.300000012</float>
										<Color3 name="BorderColor3">4279970357</Color3>
										<int name="BorderSizePixel">1</int>
										<bool name="ClipsDescendants">false</bool>
										<bool name="Draggable">false</bool>
										<string name="Name">List</string>
										<UDim2 name="Position">
											<XS>0</XS>
											<XO>0</XO>
											<YS>0</YS>
											<YO>0</YO>
										</UDim2>
										<float name="Rotation">0</float>
										<UDim2 name="Size">
											<XS>1</XS>
											<XO>-16</XO>
											<YS>1</YS>
											<YO>0</YO>
										</UDim2>
										<token name="SizeConstraint">0</token>
										<token name="Style">0</token>
										<bool name="Visible">true</bool>
										<int name="ZIndex">9</int>
									</Properties>
									<Item class="TextLabel" referent="RBX7472E2A21B284D1EB56E7D97200D43FE">
										<Properties>
											<bool name="Active">false</bool>
											<Color3 name="BackgroundColor3">4278190080</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">0</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<token name="Font">2</token>
											<token name="FontSize">5</token>
											<string name="Name">Content</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>0</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>1</YS>
												<YO>0</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<string name="Text">Made by oxcool1</string>
											<Color3 name="TextColor3">4292673535</Color3>
											<bool name="TextScaled">false</bool>
											<Color3 name="TextStrokeColor3">4278190080</Color3>
											<float name="TextStrokeTransparency">1</float>
											<float name="TextTransparency">0</float>
											<bool name="TextWrapped">false</bool>
											<token name="TextXAlignment">0</token>
											<token name="TextYAlignment">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
									</Item>
								</Item>
							</Item>
						</Item>
						<Item class="Frame" referent="RBX864C8B6538D940BC8C153D06844EA502">
							<Properties>
								<bool name="Active">false</bool>
								<Color3 name="BackgroundColor3">4288914085</Color3>
								<float name="BackgroundTransparency">1</float>
								<Color3 name="BorderColor3">4279970357</Color3>
								<int name="BorderSizePixel">1</int>
								<bool name="ClipsDescendants">false</bool>
								<bool name="Draggable">false</bool>
								<string name="Name">SelectSide</string>
								<UDim2 name="Position">
									<XS>0</XS>
									<XO>0</XO>
									<YS>0</YS>
									<YO>5</YO>
								</UDim2>
								<float name="Rotation">0</float>
								<UDim2 name="Size">
									<XS>0.230000004</XS>
									<XO>0</XO>
									<YS>1</YS>
									<YO>-5</YO>
								</UDim2>
								<token name="SizeConstraint">0</token>
								<token name="Style">0</token>
								<bool name="Visible">true</bool>
								<int name="ZIndex">9</int>
							</Properties>
							<Item class="Frame" referent="RBXD10DA5D77C6248E98F5BE920163D22D1">
								<Properties>
									<bool name="Active">false</bool>
									<Color3 name="BackgroundColor3">4294967295</Color3>
									<float name="BackgroundTransparency">0.699999988</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">0</int>
									<bool name="ClipsDescendants">false</bool>
									<bool name="Draggable">false</bool>
									<string name="Name">VeticLine</string>
									<UDim2 name="Position">
										<XS>1</XS>
										<XO>-3</XO>
										<YS>0</YS>
										<YO>0</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<UDim2 name="Size">
										<XS>0</XS>
										<XO>3</XO>
										<YS>1</YS>
										<YO>0</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<token name="Style">0</token>
									<bool name="Visible">true</bool>
									<int name="ZIndex">9</int>
								</Properties>
							</Item>
							<Item class="Frame" referent="RBXB18F7B7037E54C6AA70C1B1BA0DBA533">
								<Properties>
									<bool name="Active">true</bool>
									<Color3 name="BackgroundColor3">4288914085</Color3>
									<float name="BackgroundTransparency">1</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">1</int>
									<bool name="ClipsDescendants">false</bool>
									<bool name="Draggable">false</bool>
									<string name="Name">Clients</string>
									<UDim2 name="Position">
										<XS>0</XS>
										<XO>0</XO>
										<YS>0</YS>
										<YO>33</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<UDim2 name="Size">
										<XS>1</XS>
										<XO>-6</XO>
										<YS>1</YS>
										<YO>-33</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<token name="Style">0</token>
									<bool name="Visible">true</bool>
									<int name="ZIndex">9</int>
								</Properties>
								<Item class="Frame" referent="RBX310BE6CFA35A4A72B367B32A3D5CFA78">
									<Properties>
										<bool name="Active">false</bool>
										<Color3 name="BackgroundColor3">4288914085</Color3>
										<float name="BackgroundTransparency">1</float>
										<Color3 name="BorderColor3">4279970357</Color3>
										<int name="BorderSizePixel">1</int>
										<bool name="ClipsDescendants">false</bool>
										<bool name="Draggable">false</bool>
										<string name="Name">Scroll</string>
										<UDim2 name="Position">
											<XS>1</XS>
											<XO>-14</XO>
											<YS>0</YS>
											<YO>0</YO>
										</UDim2>
										<float name="Rotation">0</float>
										<UDim2 name="Size">
											<XS>0</XS>
											<XO>14</XO>
											<YS>1</YS>
											<YO>0</YO>
										</UDim2>
										<token name="SizeConstraint">0</token>
										<token name="Style">0</token>
										<bool name="Visible">true</bool>
										<int name="ZIndex">9</int>
									</Properties>
									<Item class="ImageButton" referent="RBX47877350FD2F4A23A8C57F4453E0FB8E">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">true</bool>
											<Color3 name="BackgroundColor3">4288914085</Color3>
											<float name="BackgroundTransparency">0</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<Content name="Image"><null></null></Content>
											<Color3 name="ImageColor3">4294967295</Color3>
											<Vector2 name="ImageRectOffset">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<Vector2 name="ImageRectSize">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<float name="ImageTransparency">0</float>
											<bool name="Modal">false</bool>
											<string name="Name">Up</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>0</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>0</XS>
												<XO>14</XO>
												<YS>0</YS>
												<YO>14</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">2</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">8</int>
										</Properties>
										<Item class="ImageLabel" referent="RBX1E02FB3C97DE4D3E8B46AD0C841D671F">
											<Properties>
												<bool name="Active">false</bool>
												<Color3 name="BackgroundColor3">4288914085</Color3>
												<float name="BackgroundTransparency">1</float>
												<Color3 name="BorderColor3">4279970357</Color3>
												<int name="BorderSizePixel">1</int>
												<bool name="ClipsDescendants">false</bool>
												<bool name="Draggable">false</bool>
												<Content name="Image"><url>http://www.roblox.com/asset/?id=112365584</url></Content>
												<Color3 name="ImageColor3">4294967295</Color3>
												<Vector2 name="ImageRectOffset">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<Vector2 name="ImageRectSize">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<float name="ImageTransparency">0</float>
												<string name="Name">ImageLabel</string>
												<UDim2 name="Position">
													<XS>0.5</XS>
													<XO>-6</XO>
													<YS>0.5</YS>
													<YO>-6</YO>
												</UDim2>
												<float name="Rotation">0</float>
												<UDim2 name="Size">
													<XS>0</XS>
													<XO>12</XO>
													<YS>0</YS>
													<YO>12</YO>
												</UDim2>
												<token name="SizeConstraint">0</token>
												<bool name="Visible">true</bool>
												<int name="ZIndex">8</int>
											</Properties>
										</Item>
									</Item>
									<Item class="Frame" referent="RBX31B15350205F41069EA92FF169FDD75A">
										<Properties>
											<bool name="Active">false</bool>
											<Color3 name="BackgroundColor3">4278190080</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<string name="Name">Bar</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>14</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<UDim2 name="Size">
												<XS>0</XS>
												<XO>14</XO>
												<YS>1</YS>
												<YO>-28</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
										<Item class="ImageButton" referent="RBXD44AF5D455DF42E29E4117124FE6DA8D">
											<Properties>
												<bool name="Active">false</bool>
												<bool name="AutoButtonColor">true</bool>
												<Color3 name="BackgroundColor3">4288914085</Color3>
												<float name="BackgroundTransparency">0</float>
												<Color3 name="BorderColor3">4279970357</Color3>
												<int name="BorderSizePixel">1</int>
												<bool name="ClipsDescendants">false</bool>
												<bool name="Draggable">false</bool>
												<Content name="Image"><null></null></Content>
												<Color3 name="ImageColor3">4294967295</Color3>
												<Vector2 name="ImageRectOffset">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<Vector2 name="ImageRectSize">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<float name="ImageTransparency">0</float>
												<bool name="Modal">false</bool>
												<string name="Name">Drag</string>
												<UDim2 name="Position">
													<XS>0</XS>
													<XO>0</XO>
													<YS>0</YS>
													<YO>0</YO>
												</UDim2>
												<float name="Rotation">0</float>
												<bool name="Selected">false</bool>
												<UDim2 name="Size">
													<XS>1</XS>
													<XO>0</XO>
													<YS>1</YS>
													<YO>0</YO>
												</UDim2>
												<token name="SizeConstraint">0</token>
												<token name="Style">2</token>
												<bool name="Visible">true</bool>
												<int name="ZIndex">8</int>
											</Properties>
											<Item class="TextLabel" referent="RBXFEB7F86D696C48049D9A0BF1B7676813">
												<Properties>
													<bool name="Active">false</bool>
													<Color3 name="BackgroundColor3">4294967295</Color3>
													<float name="BackgroundTransparency">1</float>
													<Color3 name="BorderColor3">4279970357</Color3>
													<int name="BorderSizePixel">1</int>
													<bool name="ClipsDescendants">false</bool>
													<bool name="Draggable">false</bool>
													<token name="Font">0</token>
													<token name="FontSize">2</token>
													<string name="Name">Sign</string>
													<UDim2 name="Position">
														<XS>0</XS>
														<XO>0</XO>
														<YS>0.5</YS>
														<YO>-9</YO>
													</UDim2>
													<float name="Rotation">0</float>
													<UDim2 name="Size">
														<XS>0</XS>
														<XO>4</XO>
														<YS>0</YS>
														<YO>15</YO>
													</UDim2>
													<token name="SizeConstraint">0</token>
													<string name="Text">=</string>
													<Color3 name="TextColor3">4294967295</Color3>
													<bool name="TextScaled">false</bool>
													<Color3 name="TextStrokeColor3">4278190080</Color3>
													<float name="TextStrokeTransparency">1</float>
													<float name="TextTransparency">0</float>
													<bool name="TextWrapped">false</bool>
													<token name="TextXAlignment">2</token>
													<token name="TextYAlignment">1</token>
													<bool name="Visible">true</bool>
													<int name="ZIndex">8</int>
												</Properties>
											</Item>
										</Item>
									</Item>
									<Item class="ImageButton" referent="RBX7D0E87DBD4B94B47A187680D114372E3">
										<Properties>
											<bool name="Active">false</bool>
											<bool name="AutoButtonColor">true</bool>
											<Color3 name="BackgroundColor3">4288914085</Color3>
											<float name="BackgroundTransparency">0</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<Content name="Image"><null></null></Content>
											<Color3 name="ImageColor3">4294967295</Color3>
											<Vector2 name="ImageRectOffset">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<Vector2 name="ImageRectSize">
												<X>0</X>
												<Y>0</Y>
											</Vector2>
											<float name="ImageTransparency">0</float>
											<bool name="Modal">false</bool>
											<string name="Name">Down</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>1</YS>
												<YO>-14</YO>
											</UDim2>
											<float name="Rotation">180</float>
											<bool name="Selected">false</bool>
											<UDim2 name="Size">
												<XS>0</XS>
												<XO>14</XO>
												<YS>0</YS>
												<YO>14</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">2</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">8</int>
										</Properties>
										<Item class="ImageLabel" referent="RBX0726D6EC5ED144F7AFA5C0C6CFD2C516">
											<Properties>
												<bool name="Active">false</bool>
												<Color3 name="BackgroundColor3">4288914085</Color3>
												<float name="BackgroundTransparency">1</float>
												<Color3 name="BorderColor3">4279970357</Color3>
												<int name="BorderSizePixel">1</int>
												<bool name="ClipsDescendants">false</bool>
												<bool name="Draggable">false</bool>
												<Content name="Image"><url>http://www.roblox.com/asset/?id=112365584</url></Content>
												<Color3 name="ImageColor3">4294967295</Color3>
												<Vector2 name="ImageRectOffset">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<Vector2 name="ImageRectSize">
													<X>0</X>
													<Y>0</Y>
												</Vector2>
												<float name="ImageTransparency">0</float>
												<string name="Name">ImageLabel</string>
												<UDim2 name="Position">
													<XS>0.5</XS>
													<XO>-6</XO>
													<YS>0.5</YS>
													<YO>-6</YO>
												</UDim2>
												<float name="Rotation">0</float>
												<UDim2 name="Size">
													<XS>0</XS>
													<XO>12</XO>
													<YS>0</YS>
													<YO>12</YO>
												</UDim2>
												<token name="SizeConstraint">0</token>
												<bool name="Visible">true</bool>
												<int name="ZIndex">8</int>
											</Properties>
										</Item>
									</Item>
								</Item>
								<Item class="Frame" referent="RBXB493C89508A247E69FCE80F766815CA9">
									<Properties>
										<bool name="Active">false</bool>
										<Color3 name="BackgroundColor3">4288914085</Color3>
										<float name="BackgroundTransparency">1</float>
										<Color3 name="BorderColor3">4279970357</Color3>
										<int name="BorderSizePixel">1</int>
										<bool name="ClipsDescendants">true</bool>
										<bool name="Draggable">false</bool>
										<string name="Name">List</string>
										<UDim2 name="Position">
											<XS>0</XS>
											<XO>0</XO>
											<YS>0</YS>
											<YO>0</YO>
										</UDim2>
										<float name="Rotation">0</float>
										<UDim2 name="Size">
											<XS>1</XS>
											<XO>-16</XO>
											<YS>1</YS>
											<YO>0</YO>
										</UDim2>
										<token name="SizeConstraint">0</token>
										<token name="Style">0</token>
										<bool name="Visible">true</bool>
										<int name="ZIndex">9</int>
									</Properties>
									<Item class="Frame" referent="RBX099C87C2A9B74A3DBC615F07A596ED72">
										<Properties>
											<bool name="Active">false</bool>
											<Color3 name="BackgroundColor3">4288914085</Color3>
											<float name="BackgroundTransparency">1</float>
											<Color3 name="BorderColor3">4279970357</Color3>
											<int name="BorderSizePixel">1</int>
											<bool name="ClipsDescendants">false</bool>
											<bool name="Draggable">false</bool>
											<string name="Name">Content</string>
											<UDim2 name="Position">
												<XS>0</XS>
												<XO>0</XO>
												<YS>0</YS>
												<YO>0</YO>
											</UDim2>
											<float name="Rotation">0</float>
											<UDim2 name="Size">
												<XS>1</XS>
												<XO>0</XO>
												<YS>1</YS>
												<YO>0</YO>
											</UDim2>
											<token name="SizeConstraint">0</token>
											<token name="Style">0</token>
											<bool name="Visible">true</bool>
											<int name="ZIndex">9</int>
										</Properties>
										<Item class="TextButton" referent="RBX2A41F1AD44EA45AABBDF379FC91FE326">
											<Properties>
												<bool name="Active">true</bool>
												<bool name="AutoButtonColor">true</bool>
												<Color3 name="BackgroundColor3">4283519313</Color3>
												<float name="BackgroundTransparency">1</float>
												<Color3 name="BorderColor3">4279970357</Color3>
												<int name="BorderSizePixel">0</int>
												<bool name="ClipsDescendants">false</bool>
												<bool name="Draggable">false</bool>
												<token name="Font">2</token>
												<token name="FontSize">6</token>
												<bool name="Modal">false</bool>
												<string name="Name">Client</string>
												<UDim2 name="Position">
													<XS>0</XS>
													<XO>0</XO>
													<YS>0</YS>
													<YO>0</YO>
												</UDim2>
												<float name="Rotation">0</float>
												<bool name="Selected">false</bool>
												<UDim2 name="Size">
													<XS>1</XS>
													<XO>-6</XO>
													<YS>0</YS>
													<YO>24</YO>
												</UDim2>
												<token name="SizeConstraint">0</token>
												<token name="Style">0</token>
												<string name="Text">oxcool1</string>
												<Color3 name="TextColor3">4278255360</Color3>
												<bool name="TextScaled">false</bool>
												<Color3 name="TextStrokeColor3">4278190080</Color3>
												<float name="TextStrokeTransparency">1</float>
												<float name="TextTransparency">0</float>
												<bool name="TextWrapped">true</bool>
												<token name="TextXAlignment">0</token>
												<token name="TextYAlignment">1</token>
												<bool name="Visible">true</bool>
												<int name="ZIndex">9</int>
											</Properties>
										</Item>
										<Item class="TextButton" referent="RBXD47C8B3C78A74A4CA8F6CD407968D889">
											<Properties>
												<bool name="Active">true</bool>
												<bool name="AutoButtonColor">true</bool>
												<Color3 name="BackgroundColor3">4283519313</Color3>
												<float name="BackgroundTransparency">1</float>
												<Color3 name="BorderColor3">4279970357</Color3>
												<int name="BorderSizePixel">0</int>
												<bool name="ClipsDescendants">false</bool>
												<bool name="Draggable">false</bool>
												<token name="Font">2</token>
												<token name="FontSize">6</token>
												<bool name="Modal">false</bool>
												<string name="Name">Client</string>
												<UDim2 name="Position">
													<XS>0</XS>
													<XO>0</XO>
													<YS>0</YS>
													<YO>24</YO>
												</UDim2>
												<float name="Rotation">0</float>
												<bool name="Selected">false</bool>
												<UDim2 name="Size">
													<XS>1</XS>
													<XO>-6</XO>
													<YS>0</YS>
													<YO>24</YO>
												</UDim2>
												<token name="SizeConstraint">0</token>
												<token name="Style">0</token>
												<string name="Text">Player1</string>
												<Color3 name="TextColor3">4294967295</Color3>
												<bool name="TextScaled">false</bool>
												<Color3 name="TextStrokeColor3">4278190080</Color3>
												<float name="TextStrokeTransparency">1</float>
												<float name="TextTransparency">0</float>
												<bool name="TextWrapped">true</bool>
												<token name="TextXAlignment">0</token>
												<token name="TextYAlignment">1</token>
												<bool name="Visible">true</bool>
												<int name="ZIndex">9</int>
											</Properties>
										</Item>
										<Item class="TextButton" referent="RBX414A30A05CA044AABAB260AA6F2FF10B">
											<Properties>
												<bool name="Active">true</bool>
												<bool name="AutoButtonColor">true</bool>
												<Color3 name="BackgroundColor3">4283519313</Color3>
												<float name="BackgroundTransparency">1</float>
												<Color3 name="BorderColor3">4279970357</Color3>
												<int name="BorderSizePixel">0</int>
												<bool name="ClipsDescendants">false</bool>
												<bool name="Draggable">false</bool>
												<token name="Font">2</token>
												<token name="FontSize">6</token>
												<bool name="Modal">false</bool>
												<string name="Name">Client</string>
												<UDim2 name="Position">
													<XS>0</XS>
													<XO>0</XO>
													<YS>0</YS>
													<YO>48</YO>
												</UDim2>
												<float name="Rotation">0</float>
												<bool name="Selected">false</bool>
												<UDim2 name="Size">
													<XS>1</XS>
													<XO>-6</XO>
													<YS>0</YS>
													<YO>24</YO>
												</UDim2>
												<token name="SizeConstraint">0</token>
												<token name="Style">0</token>
												<string name="Text">Player2</string>
												<Color3 name="TextColor3">4294967295</Color3>
												<bool name="TextScaled">false</bool>
												<Color3 name="TextStrokeColor3">4278190080</Color3>
												<float name="TextStrokeTransparency">1</float>
												<float name="TextTransparency">0</float>
												<bool name="TextWrapped">true</bool>
												<token name="TextXAlignment">0</token>
												<token name="TextYAlignment">1</token>
												<bool name="Visible">true</bool>
												<int name="ZIndex">9</int>
											</Properties>
										</Item>
									</Item>
								</Item>
							</Item>
							<Item class="Frame" referent="RBX08D5D27CD6974001A7FBC8B9B4F17D12">
								<Properties>
									<bool name="Active">false</bool>
									<Color3 name="BackgroundColor3">4294967295</Color3>
									<float name="BackgroundTransparency">0.699999988</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">0</int>
									<bool name="ClipsDescendants">false</bool>
									<bool name="Draggable">false</bool>
									<string name="Name">HorizLine</string>
									<UDim2 name="Position">
										<XS>0</XS>
										<XO>-5</XO>
										<YS>0</YS>
										<YO>27</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<UDim2 name="Size">
										<XS>1</XS>
										<XO>0</XO>
										<YS>0</YS>
										<YO>3</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<token name="Style">0</token>
									<bool name="Visible">true</bool>
									<int name="ZIndex">9</int>
								</Properties>
							</Item>
							<Item class="TextButton" referent="RBX6FE01E92A8344B959E11C49111616BD8">
								<Properties>
									<bool name="Active">true</bool>
									<bool name="AutoButtonColor">true</bool>
									<Color3 name="BackgroundColor3">4283519313</Color3>
									<float name="BackgroundTransparency">1</float>
									<Color3 name="BorderColor3">4279970357</Color3>
									<int name="BorderSizePixel">0</int>
									<bool name="ClipsDescendants">false</bool>
									<bool name="Draggable">false</bool>
									<token name="Font">2</token>
									<token name="FontSize">7</token>
									<bool name="Modal">false</bool>
									<string name="Name">Server</string>
									<UDim2 name="Position">
										<XS>0</XS>
										<XO>0</XO>
										<YS>0</YS>
										<YO>0</YO>
									</UDim2>
									<float name="Rotation">0</float>
									<bool name="Selected">false</bool>
									<UDim2 name="Size">
										<XS>1</XS>
										<XO>-6</XO>
										<YS>0</YS>
										<YO>24</YO>
									</UDim2>
									<token name="SizeConstraint">0</token>
									<token name="Style">0</token>
									<string name="Text">Server-side</string>
									<Color3 name="TextColor3">4294967295</Color3>
									<bool name="TextScaled">false</bool>
									<Color3 name="TextStrokeColor3">4278190080</Color3>
									<float name="TextStrokeTransparency">1</float>
									<float name="TextTransparency">0</float>
									<bool name="TextWrapped">true</bool>
									<token name="TextXAlignment">0</token>
									<token name="TextYAlignment">1</token>
									<bool name="Visible">true</bool>
									<int name="ZIndex">9</int>
								</Properties>
							</Item>
						</Item>
					</Item>
					<Item class="ImageButton" referent="RBXD292F595ED3B421BA83431959026810B">
						<Properties>
							<bool name="Active">false</bool>
							<bool name="AutoButtonColor">false</bool>
							<Color3 name="BackgroundColor3">4288914085</Color3>
							<float name="BackgroundTransparency">1</float>
							<Color3 name="BorderColor3">4279970357</Color3>
							<int name="BorderSizePixel">1</int>
							<bool name="ClipsDescendants">false</bool>
							<bool name="Draggable">false</bool>
							<Content name="Image"><null></null></Content>
							<Color3 name="ImageColor3">4294967295</Color3>
							<Vector2 name="ImageRectOffset">
								<X>0</X>
								<Y>0</Y>
							</Vector2>
							<Vector2 name="ImageRectSize">
								<X>0</X>
								<Y>0</Y>
							</Vector2>
							<float name="ImageTransparency">0</float>
							<bool name="Modal">false</bool>
							<string name="Name">MouseDrag</string>
							<UDim2 name="Position">
								<XS>0</XS>
								<XO>0</XO>
								<YS>0</YS>
								<YO>0</YO>
							</UDim2>
							<float name="Rotation">0</float>
							<bool name="Selected">false</bool>
							<UDim2 name="Size">
								<XS>1</XS>
								<XO>0</XO>
								<YS>1</YS>
								<YO>0</YO>
							</UDim2>
							<token name="SizeConstraint">0</token>
							<token name="Style">0</token>
							<bool name="Visible">false</bool>
							<int name="ZIndex">10</int>
						</Properties>
					</Item>
					<Item class="TextButton" referent="RBXEF5424B1D7A043EAAFC4052F35CD3115">
						<Properties>
							<bool name="Active">true</bool>
							<bool name="AutoButtonColor">true</bool>
							<Color3 name="BackgroundColor3">4294967295</Color3>
							<float name="BackgroundTransparency">0</float>
							<Color3 name="BorderColor3">4279970357</Color3>
							<int name="BorderSizePixel">1</int>
							<bool name="ClipsDescendants">false</bool>
							<bool name="Draggable">false</bool>
							<token name="Font">4</token>
							<token name="FontSize">4</token>
							<bool name="Modal">false</bool>
							<string name="Name">OpenClose</string>
							<UDim2 name="Position">
								<XS>0</XS>
								<XO>60</XO>
								<YS>1</YS>
								<YO>-24</YO>
							</UDim2>
							<float name="Rotation">0</float>
							<bool name="Selected">false</bool>
							<UDim2 name="Size">
								<XS>0</XS>
								<XO>110</XO>
								<YS>0</YS>
								<YO>20</YO>
							</UDim2>
							<token name="SizeConstraint">0</token>
							<token name="Style">2</token>
							<string name="Text">ox</string>
							<Color3 name="TextColor3">4294967295</Color3>
							<bool name="TextScaled">false</bool>
							<Color3 name="TextStrokeColor3">4278190080</Color3>
							<float name="TextStrokeTransparency">1</float>
							<float name="TextTransparency">0</float>
							<bool name="TextWrapped">false</bool>
							<token name="TextXAlignment">2</token>
							<token name="TextYAlignment">1</token>
							<bool name="Visible">false</bool>
							<int name="ZIndex">9</int>
						</Properties>
					</Item>
				</Item>
			</Item>
			<Item class="RemoteEvent" referent="RBX068E4A3D04CA409A9B9156537410770A">
				<Properties>
					<string name="Name">ScriptBuilder</string>
				</Properties>
			</Item>
			<Item class="ModuleScript" referent="RBXC1F7A9F925D24396B1F0C9462EE3C91D">
				<Properties>
					<string name="Name">PrintFunction</string>
					<ProtectedString name="Source">local OCServer = game:GetService(&quot;ReplicatedStorage&quot;).OCServer

function Print(...)
&#9;local arg = {}
&#9;local argn = select(&quot;#&quot;,...)
&#9;if argn &gt; 0 then
&#9;&#9;for i = 1,argn do 
&#9;&#9;&#9;arg[i] = tostring(select(i,...))
&#9;&#9;end 
&#9;end
&#9;return table.concat(arg,&apos;\t&apos;)
end


return function(...)
&#9;local script = getfenv(2).script
&#9;local data = {{Print(...),&quot;\t---&quot;,{script:GetFullName(),script.ClassName,script}},&quot;Print&quot;}
&#9;if script.ClassName == &quot;Script&quot; then
&#9;&#9;_G.OSC_AddServerSideData(data)
&#9;elseif script.ClassName == &quot;LocalScript&quot; then
&#9;&#9;OCServer:FireServer(data)
&#9;end
end</ProtectedString>
				</Properties>
			</Item>
			<Item class="RemoteFunction" referent="RBX812B395EA0A14AC7BD817AF3E81C6C95">
				<Properties>
					<string name="Name">GetSides</string>
				</Properties>
			</Item>
		</Item>
	</Item>
</roblox>