Teleport Script

Welcome to the Teleport Script! The Teleport Script is a powerful and easy-to-use tool that allows you to instantly teleport to preset locations or custom coordinates with a sleek and user-friendly interface.

Features and Uses of Teleport Script

  • Preset TP Locations – Instantly teleport to predefined locations like “Spawn” or “Safe Zone”.
  • Custom Coordinate Input – Manually enter X, Y, and Z coordinates for precise teleportation.
  • Draggable & Smooth GUI – Enjoy a seamless experience with a stylish black-themed, draggable interface.
  • Animated Opening & Closing – The script features smooth animations for opening and closing the menu, enhancing the user experience.
-- 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:

  1. Launch the Script – Run the script in your preferred execution environment.
  2. Open the GUI – Click to open the teleport menu (animated for smooth interaction).
  3. Select a Preset Location – Choose from pre-defined locations like “Spawn” or “Safe Zone”.
  4. Enter Custom Coordinates – If you prefer, manually input X, Y, and Z values.
  5. Teleport Instantly – Click the teleport button to instantly move to your selected location.
  6. Close the GUI – Use the smooth animation to exit the menu when done.

Enjoy seamless teleportation with the Teleport Script!


Leave a Comment