Teleport Script

Hey there, mobile gamers! Have you ever wanted to move around your Roblox games faster and easier? I’ve got an awesome teleport script that can help you do just that. This script creates a neat teleport GUI that you can use to zip around any Roblox game. It’s simple to use and has a clean design that works well on both mobile and desktop. Let’s check out what it offers!

Features and uses of Teleport Script:

  • Draggable interface that you can position anywhere on your screen
  • Toggle button to show/hide the teleport menu
  • Smooth opening and closing animations
  • Preset teleport locations (Spawn and Safe Zone)
  • Custom coordinate input for precise teleportation
  • Clean, dark-themed design with rounded corners
  • RGB color effects for visual appeal

Code:

-- Services
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer

-- Create GUI
local ScreenGui = Instance.new("ScreenGui")
ScreenGui.Parent = game.CoreGui
ScreenGui.ResetOnSpawn = false

-- **Toggle Button (To Open/Close GUI)**
local ToggleButton = Instance.new("TextButton")
ToggleButton.Parent = ScreenGui
ToggleButton.Size = UDim2.new(0, 40, 0, 40)
ToggleButton.Position = UDim2.new(0, 10, 0, 10)
ToggleButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Black Icon
ToggleButton.Text = "X"
ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) -- White "X"
ToggleButton.Font = Enum.Font.SourceSansBold
ToggleButton.TextSize = 20
ToggleButton.BorderSizePixel = 0
ToggleButton.Draggable = true
ToggleButton.AutoButtonColor = false

-- **Main TP GUI**
local Frame = Instance.new("Frame")
Frame.Parent = ScreenGui
Frame.Size = UDim2.new(0, 250, 0, 200)
Frame.Position = UDim2.new(0, 50, 0, 50)
Frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) -- Dark background
Frame.BorderSizePixel = 0
Frame.Visible = false
Frame.Active = true
Frame.Draggable = true

-- Smooth Opening Animation
local function smoothOpen()
Frame.Visible = true
Frame.Size = UDim2.new(0, 0, 0, 0)
for i = 0, 1, 0.1 do
Frame.Size = UDim2.new(0, 250 * i, 0, 200 * i)
wait(0.02)
end
Frame.Size = UDim2.new(0, 250, 0, 200)
end

local function smoothClose()
for i = 1, 0, -0.1 do
Frame.Size = UDim2.new(0, 250 * i, 0, 200 * i)
wait(0.02)
end
Frame.Visible = false
end

-- Toggle Button Function
ToggleButton.MouseButton1Click:Connect(function()
if Frame.Visible then
smoothClose()
else
smoothOpen()
end
end)

-- **Teleport Title**
local Title = Instance.new("TextLabel")
Title.Parent = Frame
Title.Size = UDim2.new(1, 0, 0, 25)
Title.Position = UDim2.new(0, 0, 0, 5)
Title.BackgroundTransparency = 1
Title.Text = "Teleport GUI"
Title.TextColor3 = Color3.fromRGB(255, 255, 255)
Title.Font = Enum.Font.SourceSansBold
Title.TextSize = 18

-- **Preset Teleport Buttons**
local function createButton(text, pos, location)
local Button = Instance.new("TextButton")
Button.Parent = Frame
Button.Size = UDim2.new(0.5, -5, 0, 35)
Button.Position = pos
Button.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
Button.Text = text
Button.TextColor3 = Color3.fromRGB(255, 255, 255)
Button.Font = Enum.Font.SourceSansBold
Button.TextSize = 14

Button.MouseButton1Click:Connect(function()
if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(location)
end
end)
end

createButton("Spawn", UDim2.new(0, 5, 0.2, 0), Vector3.new(0, 10, 0))
createButton("Safe Zone", UDim2.new(0.5, 5, 0.2, 0), Vector3.new(100, 10, 100))

-- **Custom Teleport Inputs**
local XBox = Instance.new("TextBox")
XBox.Parent = Frame
XBox.Size = UDim2.new(0.3, -5, 0, 30)
XBox.Position = UDim2.new(0, 5, 0.55, 0)
XBox.PlaceholderText = "X"
XBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
XBox.TextColor3 = Color3.fromRGB(255, 255, 255)

local YBox = Instance.new("TextBox")
YBox.Parent = Frame
YBox.Size = UDim2.new(0.3, -5, 0, 30)
YBox.Position = UDim2.new(0.35, 5, 0.55, 0)
YBox.PlaceholderText = "Y"
YBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
YBox.TextColor3 = Color3.fromRGB(255, 255, 255)

local ZBox = Instance.new("TextBox")
ZBox.Parent = Frame
ZBox.Size = UDim2.new(0.3, -5, 0, 30)
ZBox.Position = UDim2.new(0.7, 5, 0.55, 0)
ZBox.PlaceholderText = "Z"
ZBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
ZBox.TextColor3 = Color3.fromRGB(255, 255, 255)

-- **Teleport Button for Custom Coordinates**
local TeleportButton = Instance.new("TextButton")
TeleportButton.Parent = Frame
TeleportButton.Size = UDim2.new(1, -10, 0, 35)
TeleportButton.Position = UDim2.new(0, 5, 0.75, 0)
TeleportButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
TeleportButton.Text = "Teleport"
TeleportButton.TextColor3 = Color3.fromRGB(255, 255, 255)
TeleportButton.Font = Enum.Font.SourceSansBold
TeleportButton.TextSize = 14

TeleportButton.MouseButton1Click:Connect(function()
local x, y, z = tonumber(XBox.Text), tonumber(YBox.Text), tonumber(ZBox.Text)
if x and y and z then
if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(x, y, z)
end
end
end)

-- **Made by: Xenramd (RGB Effect)**
local CreditLabel = Instance.new("TextLabel")
CreditLabel.Parent = Frame
CreditLabel.Size = UDim2.new(1, 0, 0, 18)
CreditLabel.Position = UDim2.new(0, 0, 1, -25) -- Positioned at the bottom
CreditLabel.BackgroundTransparency = 1
CreditLabel.Text = "Made by: Xenramd"
CreditLabel.Font = Enum.Font.SourceSansBold
CreditLabel.TextSize = 13
CreditLabel.TextColor3 = Color3.fromRGB(255, 255, 255)

-- **RGB Effect for "Made by: Xenramd"**
spawn(function()
while true do
for hue = 0, 1, 0.01 do
CreditLabel.TextColor3 = Color3.fromHSV(hue, 1, 1)
wait(0.05)
end
end
end)

-- **Smooth Rounded Corners**
local function addRoundedCorner(instance)
local UICorner = Instance.new("UICorner")
UICorner.CornerRadius = UDim.new(0.2, 0)
UICorner.Parent = instance
end

for _, item in pairs({Frame, ToggleButton, TeleportButton, XBox, YBox, ZBox}) do
addRoundedCorner(item)
end

How to Use the Script

Using this teleport script is straightforward, even for beginners. Here’s a step-by-step guide:

  1. Copy the entire script code provided above.
  2. Open your Roblox game and your script executor.
  3. Paste the script into your executor and run it.
  4. You’ll see a small “X” button appear in the top-left corner of your screen.
  5. Click this button to open the teleport menu with a smooth animation.
  6. Use the preset buttons to teleport to common locations like “Spawn” or “Safe Zone”.
  7. For custom teleportation, enter the X, Y, and Z coordinates in the input boxes.
  8. Click the “Teleport” button to instantly move to those coordinates.
  9. To hide the menu, click the “X” button again.

The interface is fully draggable, so you can position it anywhere on your screen that’s convenient. This makes it especially useful for mobile players who need to manage screen space efficiently.

Benefits of Using This Script

This teleport script offers numerous advantages that can enhance your Roblox gaming experience. First and foremost, it saves you significant time by allowing instant travel across the game map. No more long walks or getting lost trying to find important locations!

The user interface is designed with mobile users in mind, featuring larger buttons that are easy to tap and a clean layout that doesn’t clutter your screen. The toggle feature lets you hide the menu when not in use, keeping your view clear during gameplay. These design considerations make it particularly valuable for players on phones or tablets.

For explorers and builders, the custom coordinate input is invaluable. You can note down the coordinates of important locations and return to them precisely whenever needed. This is especially useful in large game worlds or when working on construction projects that require frequent movement between specific points.

The script also demonstrates good performance optimization. The smooth animations add visual appeal without causing lag, and the clean code ensures it runs efficiently even on less powerful mobile devices. This balance of functionality and performance is crucial for a good user experience.

From a design perspective, the dark theme with rounded corners provides a modern look that’s easy on the eyes, particularly during long gaming sessions. The subtle RGB effect on the credit text adds a touch of personality without being distracting.

Scripts like this one showcase how thoughtful UI design and practical functionality can come together to create tools that genuinely improve the gaming experience. Whether you’re a casual player looking to save time or a serious gamer needing precise movement control, this teleport script offers a polished solution that works seamlessly across devices.

Leave a Comment