--// Open Source local plr = game.Players.LocalPlayer local char = plr.Character or plr.CharacterAdded:Wait() local humRoot = char:WaitForChild("HumanoidRootPart") local originalPositions = {} local toggled = {} -- GUI Setup local gui = Instance.new("ScreenGui", plr:WaitForChild("PlayerGui")) gui.Name = "SlapGloveGUI" gui.ResetOnSpawn = false local main = Instance.new("Frame", gui) main.Size = UDim2.new(0, 270, 0, 360) main.Position = UDim2.new(0.05, 0, 0.3, 0) main.BackgroundColor3 = Color3.fromRGB(20, 20, 20) main.BorderSizePixel = 0 main.Active = true main.Draggable = true local UICorner = Instance.new("UICorner", main) UICorner.CornerRadius = UDim.new(0, 10) local UIListLayout = Instance.new("UIListLayout", main) UIListLayout.Padding = UDim.new(0, 5) UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder -- Title local title = Instance.new("TextLabel", main) title.Size = UDim2.new(1, 0, 0, 35) title.Text = "🧤 Glove Giver Menu" title.Font = Enum.Font.GothamBold title.TextSize = 18 title.TextColor3 = Color3.new(1, 1, 1) title.BackgroundTransparency = 1 -- Button Template Function local function createTPButton(name, coords) local button = Instance.new("TextButton", main) button.Size = UDim2.new(1, -10, 0, 30) button.Position = UDim2.new(0, 5, 0, 0) button.Text = name button.Font = Enum.Font.Gotham button.TextSize = 15 button.TextColor3 = Color3.fromRGB(255, 255, 255) button.BackgroundColor3 = Color3.fromRGB(50, 50, 50) button.AutoButtonColor = true local corner = Instance.new("UICorner", button) corner.CornerRadius = UDim.new(0, 6) button.MouseButton1Click:Connect(function() if not toggled[name] then originalPositions[name] = humRoot.Position humRoot.CFrame = CFrame.new(unpack(coords)) toggled[name] = true button.Text = "↩️ Return (" .. name .. ")" else humRoot.CFrame = CFrame.new(originalPositions[name]) toggled[name] = false button.Text = name end end) end -- Glove Teleport Buttons createTPButton("☢️Nuclear☢️ Slap", {-150.603, 318.81, -9.396}) createTPButton("👑Win Slap👑", {-220.17, 318.81, 58.571}) createTPButton("⚡Lightning Slap⚡", {-136.3, -63.51, -0.011}) createTPButton("🌈Magic Carpet🌈", {77.828, -64.198, -21.643}) createTPButton("🌐Group Slap🌐", {99.436, -64.201, 28.336}) createTPButton("🌟Premium Slap🌟", {100.486, -64.198, 12.158}) -- Minimizer local toggleButton = Instance.new("TextButton", gui) toggleButton.Size = UDim2.new(0, 40, 0, 40) toggleButton.Position = UDim2.new(0.05, -45, 0.3, 0) toggleButton.Text = "🧤" toggleButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) toggleButton.TextColor3 = Color3.new(1, 1, 1) toggleButton.Font = Enum.Font.GothamBold toggleButton.TextSize = 22 local toggleUICorner = Instance.new("UICorner", toggleButton) toggleUICorner.CornerRadius = UDim.new(1, 0) local minimized = false toggleButton.MouseButton1Click:Connect(function() minimized = not minimized main.Visible = not minimized end)