--// Epic Slop GUI -- Place this in a LocalScript inside StarterPlayerScripts or StarterGui -- Create ScreenGui local gui = Instance.new("ScreenGui") gui.Name = "EpicSlopGUI" gui.ResetOnSpawn = false gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") -- Main Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 200, 0, 120) frame.Position = UDim2.new(0.05, 0, 0.3, 0) frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) frame.BorderSizePixel = 2 frame.Parent = gui -- Title local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 30) title.BackgroundColor3 = Color3.fromRGB(25, 25, 25) title.Text = "Epic Slop GUI" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextSize = 18 title.Parent = frame -- Button creator function local function createButton(text, order) local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, -10, 0, 35) btn.Position = UDim2.new(0, 5, 0, 35 + (order * 40)) btn.BackgroundColor3 = Color3.fromRGB(60, 60, 60) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.Gotham btn.TextSize = 16 btn.Text = text btn.Parent = frame return btn end -- Buttons local baseBtn = createButton("Base", 0) local maxBtn = createButton("Max Area", 1) -- Teleport function local function tpTo(x, y, z) local char = game.Players.LocalPlayer.Character if char and char:FindFirstChild("HumanoidRootPart") then char.HumanoidRootPart.CFrame = CFrame.new(x, y, z) end end -- Button actions baseBtn.MouseButton1Click:Connect(function() tpTo(0, 3, 8) end) maxBtn.MouseButton1Click:Connect(function() tpTo(-2, 3, 5429) end)