To create an effect in a game, such as in Roblox, where unanchored parts fly towards a player like they're a walking black hole, you'll need to use some scripting. Here’s a basic example of how you can achieve this using Lua scripting in Roblox. This script assumes you have a GUI with a textbox for the player's name.
### Step 1: Set Up Your GUI
1. In Roblox Studio, create a ScreenGui.
2. Add a TextBox for inputting the player's name.
3. Add a


