-- // Bring All Players to You (Delta Exploit GUI) // -- Username is pre-set to Rengoku88226 -- Must be executed with Delta or another server-capable exploit -- Create GUI local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = game:GetService("CoreGui") ScreenGui.ResetOnSpawn = false local BringButton = Instance.new("TextButton") BringButton.Size = UDim2.new(0, 150, 0, 50) BringButton.Position = UDim2.new(0.5, -75, 0.5, -25) BringButton.Text = "Bring All" BringButton.BackgroundColor3 = Color3.fromRGB(255, 70, 70) BringButton.TextScaled = true BringButton.Parent = ScreenGui -- Server-side bring function (requires Delta's server execution) local function bringAll() local Players = game:GetService("Players") local me = Players:FindFirstChild("Rengoku88226") if not me then warn("Your player was not found!") return end local myChar = me.Character or me.CharacterAdded:Wait() local myHRP = myChar:WaitForChild("HumanoidRootPart") for _, player in ipairs(Players:GetPlayers()) do if player ~= me and player.Character then local hrp = player.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = myHRP.CFrame + Vector3.new(0, 3, 0) end end end end -- Hook up button click BringButton.MouseButton1Click:Connect(function() bringAll() end)