0% found this document useful (0 votes)
9 views3 pages

obsucated-require-execute

Uploaded by

lifecycle702
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views3 pages

obsucated-require-execute

Uploaded by

lifecycle702
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

local joinPlr = Instance.

new("ScreenGui")
local main = Instance.new("Frame")
local console = Instance.new("TextLabel")
local userId = Instance.new("TextBox")
local UICorner = Instance.new("UICorner")
local placeId = Instance.new("TextBox")
local UICorner_2 = Instance.new("UICorner")
local joinButton = Instance.new("TextButton")
local UICorner_3 = Instance.new("UICorner")
local TeleportService = game:GetService("TeleportService")

joinPlr.Name = "joinPlr"
joinPlr.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
joinPlr.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
joinPlr.ResetOnSpawn = false

main.Name = "main"
main.Parent = joinPlr
main.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
main.BorderColor3 = Color3.fromRGB(0, 0, 0)
main.BorderSizePixel = 0
main.Position = UDim2.new(0.267683774, 0, 0.314910024, 0)
main.Size = UDim2.new(0, 670, 0, 287)
main.Active = true
main.Draggable = true

console.Name = "console"
console.Parent = main
console.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
console.BackgroundTransparency = 1
console.BorderColor3 = Color3.fromRGB(0, 0, 0)
console.BorderSizePixel = 0
console.Position = UDim2.new(0.350746274, 0, 0.940766573, 0)
console.Size = UDim2.new(0, 200, 0, 17)
console.Font = Enum.Font.GothamMedium
console.Text = "please enter information to begin."
console.TextColor3 = Color3.fromRGB(255, 255, 255)

userId.Name = "userId"
userId.Parent = main
userId.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
userId.BorderColor3 = Color3.fromRGB(0, 0, 0)
userId.BorderSizePixel = 0
userId.Position = UDim2.new(0.0985074639, 0, 0.111498259, 0)
userId.Size = UDim2.new(0, 544, 0, 50)
userId.Font = Enum.Font.GothamMedium
userId.PlaceholderText = "userId"
userId.Text = ""
userId.TextColor3 = Color3.fromRGB(255, 255, 255)
userId.TextSize = 14

UICorner.CornerRadius = UDim.new(0, 6)
UICorner.Parent = userId

placeId.Name = "placeId"
placeId.Parent = main
placeId.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
placeId.BorderColor3 = Color3.fromRGB(0, 0, 0)
placeId.BorderSizePixel = 0
placeId.Position = UDim2.new(0.0985074639, 0, 0.331010461, 0)
placeId.Size = UDim2.new(0, 544, 0, 50)
placeId.Font = Enum.Font.GothamMedium
placeId.PlaceholderText = "placeId"
placeId.Text = ""
placeId.TextColor3 = Color3.fromRGB(255, 255, 255)
placeId.TextSize = 14

UICorner_2.CornerRadius = UDim.new(0, 6)
UICorner_2.Parent = placeId

joinButton.Name = "joinButton"
joinButton.Parent = main
joinButton.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
joinButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
joinButton.BorderSizePixel = 0
joinButton.Position = UDim2.new(0.368656725, 0, 0.543554008, 0)
joinButton.Size = UDim2.new(0, 187, 0, 50)
joinButton.Font = Enum.Font.GothamBold
joinButton.Text = "Join"
joinButton.TextColor3 = Color3.fromRGB(178, 178, 178)
joinButton.TextSize = 14

UICorner_3.CornerRadius = UDim.new(0, 6)
UICorner_3.Parent = joinButton

local function isValidId(id)


return tonumber(id) ~= nil
end

joinButton.MouseButton1Click:Connect(function()
local userIdValue = userId.Text
local placeIdValue = placeId.Text

if userIdValue == "" or placeIdValue == "" or not isValidId(userIdValue) or not


isValidId(placeIdValue) then
console.Text = "please enter the user id, place id that are valid or fill
in all fields."
return
end

console.Text = "joining."
for _ = 1, 3 do
wait(0.5)
console.Text = "joining.."
wait(0.5)
console.Text = "joining..."
wait(0.5)
console.Text = "joining."
end

console.Text = "joined player"

-- Attempt to join the player's game


local success, err = pcall(function()
TeleportService:Teleport(tonumber(placeIdValue), game.Players.LocalPlayer)
end)

if not success then


console.Text = "Failed to join: " .. tostring(err)
end
end)

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy