local MODULE = {}; -- StarterGui.ModuleGUI MODULE["1"] = Instance.new("ScreenGui", game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui")); MODULE["1"]["Name"] = [[ModuleGUI]]; MODULE["1"]["ZIndexBehavior"] = Enum.ZIndexBehavior.Sibling; -- StarterGui.ModuleGUI.Module MODULE["2"] = Instance.new("Frame", MODULE["1"]); MODULE["2"]["BorderSizePixel"] = 0; MODULE["2"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 0); MODULE["2"]["AnchorPoint"] = Vector2.new(0.5, 0.5); MODULE["2"]["Size"] = UDim2.new(0.20000000298023224, 0, 0.20000000298023224, 0); MODULE["2"]["Position"] = UDim2.new(0.5, 0, 0.5, 0); MODULE["2"]["Name"] = [[Module]]; -- StarterGui.ModuleGUI.Module.DropShadowHolder MODULE["3"] = Instance.new("Frame", MODULE["2"]); MODULE["3"]["ZIndex"] = 0; MODULE["3"]["BorderSizePixel"] = 0; MODULE["3"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 0); MODULE["3"]["BackgroundTransparency"] = 1; MODULE["3"]["Size"] = UDim2.new(1, 0, 1, 0); MODULE["3"]["Name"] = [[DropShadowHolder]]; -- StarterGui.ModuleGUI.Module.DropShadowHolder.DropShadow MODULE["4"] = Instance.new("ImageLabel", MODULE["3"]); MODULE["4"]["ZIndex"] = 0; MODULE["4"]["BorderSizePixel"] = 0; MODULE["4"]["SliceCenter"] = Rect.new(49, 49, 450, 450); MODULE["4"]["ScaleType"] = Enum.ScaleType.Slice; MODULE["4"]["ImageTransparency"] = 0.5; MODULE["4"]["AnchorPoint"] = Vector2.new(0.5, 0.5); MODULE["4"]["Image"] = [[rbxassetid://6014261993]]; MODULE["4"]["Size"] = UDim2.new(1, 47, 1, 47); MODULE["4"]["Name"] = [[DropShadow]]; MODULE["4"]["BackgroundTransparency"] = 1; MODULE["4"]["Position"] = UDim2.new(0.5, 0, 0.5, 0); -- StarterGui.ModuleGUI.Module.TextLabel MODULE["5"] = Instance.new("TextLabel", MODULE["2"]); MODULE["5"]["BorderSizePixel"] = 0; MODULE["5"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255); MODULE["5"]["FontFace"] = Font.new([[rbxasset://fonts/families/GothamSSm.json]], Enum.FontWeight.Bold, Enum.FontStyle.Normal); MODULE["5"]["TextSize"] = 20; MODULE["5"]["TextColor3"] = Color3.fromRGB(0, 201, 0); MODULE["5"]["Size"] = UDim2.new(1, 0, 0.2615293860435486, 0); MODULE["5"]["Text"] = [[Module enabled!]]; MODULE["5"]["BackgroundTransparency"] = 1; -- StarterGui.ModuleGUI.Module.TextLabel.UIStroke MODULE["6"] = Instance.new("UIStroke", MODULE["5"]); MODULE["6"]["Color"] = Color3.fromRGB(57, 57, 57); -- StarterGui.ModuleGUI.Module.UICorner MODULE["7"] = Instance.new("UICorner", MODULE["2"]); -- StarterGui.ModuleGUI.Module.TextButton MODULE["8"] = Instance.new("TextButton", MODULE["2"]); MODULE["8"]["BorderSizePixel"] = 0; MODULE["8"]["BackgroundColor3"] = Color3.fromRGB(0, 255, 0); MODULE["8"]["TextSize"] = 16; MODULE["8"]["FontFace"] = Font.new([[rbxasset://fonts/families/GothamSSm.json]], Enum.FontWeight.Bold, Enum.FontStyle.Normal); MODULE["8"]["TextColor3"] = Color3.fromRGB(0, 0, 0); MODULE["8"]["AnchorPoint"] = Vector2.new(0, 1); MODULE["8"]["Size"] = UDim2.new(0.6682747006416321, 0, 0.2499999701976776, 0); MODULE["8"]["Text"] = [[Disable Module]]; MODULE["8"]["Position"] = UDim2.new(-1.3867746417872695e-07, 0, 1, 0); -- StarterGui.ModuleGUI.Module.TextButton.LocalScript MODULE["9"] = Instance.new("LocalScript", MODULE["8"]); -- StarterGui.ModuleGUI.Module.ModuleName MODULE["a"] = Instance.new("TextLabel", MODULE["2"]); MODULE["a"]["BorderSizePixel"] = 0; MODULE["a"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 0); MODULE["a"]["FontFace"] = Font.new([[rbxasset://fonts/families/Ubuntu.json]], Enum.FontWeight.Regular, Enum.FontStyle.Normal); MODULE["a"]["TextSize"] = 22; MODULE["a"]["TextColor3"] = Color3.fromRGB(0, 0, 0); MODULE["a"]["Size"] = UDim2.new(1, 0, 1, 0); MODULE["a"]["Text"] = [[Module name:]]; MODULE["a"]["Name"] = [[ModuleName]]; MODULE["a"]["BackgroundTransparency"] = 1; -- StarterGui.ModuleGUI.Module.Hide MODULE["b"] = Instance.new("TextButton", MODULE["2"]); MODULE["b"]["BorderSizePixel"] = 0; MODULE["b"]["BackgroundColor3"] = Color3.fromRGB(0, 228, 0); MODULE["b"]["TextSize"] = 16; MODULE["b"]["FontFace"] = Font.new([[rbxasset://fonts/families/GothamSSm.json]], Enum.FontWeight.Bold, Enum.FontStyle.Normal); MODULE["b"]["TextColor3"] = Color3.fromRGB(0, 0, 0); MODULE["b"]["AnchorPoint"] = Vector2.new(0, 1); MODULE["b"]["Size"] = UDim2.new(0.3365493714809418, 0, 0.2499999701976776, 0); MODULE["b"]["Name"] = [[Hide]]; MODULE["b"]["Text"] = [[Hide]]; MODULE["b"]["Position"] = UDim2.new(0.6634504795074463, 0, 1, 0); -- StarterGui.ModuleGUI.Module.Hide.TweenHide MODULE["c"] = Instance.new("LocalScript", MODULE["b"]); MODULE["c"]["Name"] = [[TweenHide]]; -- StarterGui.ModuleGUI.Module.TextButton.LocalScript local function C_9() local script = MODULE["9"]; local button = script.Parent button.MouseButton1Click:Connect(function() _G.Esp:Destroy() end) end; task.spawn(C_9); -- StarterGui.ModuleGUI.Module.Hide.TweenHide local function C_c() local script = MODULE["c"]; local button = script.Parent local visible = false local frame = script.Parent.Parent button.MouseButton1Click:Connect(function() frame:TweenPosition(UDim2.new(0.11,0,0.075,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, 0.5, false) end) end; task.spawn(C_c); return MODULE["1"], require;