Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --debugger func
- local G2L = {};
- local funcs = {
- String = {},
- Table = {},
- }
- G2L["1"] = Instance.new("ScreenGui", game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui"));
- G2L["1"]["IgnoreGuiInset"] = true;
- G2L["1"]["DisplayOrder"] = 6;
- G2L["1"]["AutoLocalize"] = false;
- G2L["1"]["ScreenInsets"] = Enum.ScreenInsets.DeviceSafeInsets;
- G2L["1"]["Name"] = [[DebugMSG]];
- G2L["1"]["ZIndexBehavior"] = Enum.ZIndexBehavior.Sibling;
- G2L["1"]["ResetOnSpawn"] = false;
- G2L["2"] = Instance.new("Frame", G2L["1"]);
- G2L["2"]["ZIndex"] = 999999999;
- G2L["2"]["BackgroundColor3"] = Color3.fromRGB(18, 18, 18);
- G2L["2"]["AnchorPoint"] = Vector2.new(1, 0);
- G2L["2"]["Size"] = UDim2.new(1, 0, 0, 48);
- G2L["2"]["Position"] = UDim2.new(0.9992360472679138, 0, 0.8754304647445679, 0);
- G2L["2"]["Name"] = [[Debugger]];
- G2L["3"] = Instance.new("UIPadding", G2L["2"]);
- G2L["3"]["PaddingTop"] = UDim.new(0, 2);
- G2L["3"]["Name"] = [[Padding]];
- G2L["3"]["PaddingBottom"] = UDim.new(0, 2);
- G2L["3"]["PaddingLeft"] = UDim.new(0, 88);
- G2L["4"] = Instance.new("UIStroke", G2L["2"]);
- G2L["4"]["Color"] = Color3.fromRGB(255, 94, 94);
- G2L["4"]["Thickness"] = 4.5;
- G2L["5"] = Instance.new("LocalScript", G2L["2"]);
- G2L["6"] = Instance.new("TextButton", G2L["2"]);
- G2L["6"]["BorderSizePixel"] = 0;
- G2L["6"]["TextXAlignment"] = Enum.TextXAlignment.Left;
- G2L["6"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255);
- G2L["6"]["TextSize"] = 13;
- G2L["6"]["FontFace"] = Font.new([[rbxasset://fonts/families/GothamSSm.json]], Enum.FontWeight.Medium, Enum.FontStyle.Normal);
- G2L["6"]["TextColor3"] = Color3.fromRGB(255, 94, 94);
- G2L["6"]["Size"] = UDim2.new(1.1357775926589966, 0, 0, 50);
- G2L["6"]["BorderColor3"] = Color3.fromRGB(0, 0, 0);
- G2L["6"]["Text"] = [[Debugger]];
- G2L["6"]["Position"] = UDim2.new(0, -70, 0, 0);
- G2L["6"]["BackgroundTransparency"] = 1;
- G2L["7"] = Instance.new("UIPadding", G2L["6"]);
- G2L["7"]["Name"] = [[Padding]];
- G2L["7"]["PaddingLeft"] = UDim.new(0, 10);
- G2L["2"].Position = UDim2.new(1.012, -16,0.928, 60)
- function funcs:DebugFalse(name)
- G2L["6"].Text = name
- G2L["4"]["Color"] = Color3.fromRGB(255, 94, 94);
- G2L["6"]["TextColor3"] = Color3.fromRGB(255, 94, 94);
- local t = game:GetService("TweenService")
- intro = t:Create(G2L["2"], TweenInfo.new(0.1, Enum.EasingStyle.Linear), {Position = UDim2.new(1.012, -10, 0.928, -18)}):Play()
- return false
- end
- function funcs:DebugTrue(name)
- G2L["6"].Text = name
- G2L["4"]["Color"] = Color3.fromRGB(0, 255, 128);
- G2L["6"]["TextColor3"] = Color3.fromRGB(0, 255, 128);
- local t = game:GetService("TweenService")
- intro = t:Create(G2L["2"], TweenInfo.new(0.1, Enum.EasingStyle.Linear), {Position = UDim2.new(1.012, -10, 0.928, -18)}):Play()
- return false
- end
- local t = game:GetService("TweenService")
- G2L["6"].MouseButton1Click:Connect(function()
- intro = t:Create(G2L["2"], TweenInfo.new(0.1, Enum.EasingStyle.Linear), {Position = UDim2.new(1.012, -10,0.928, 60)}):Play()
- wait(.3)
- G2L["1"]:Destroy()
- end)
- return funcs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement