Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made by mandy_dos_candys on discord
- local screenGui = Instance.new("ScreenGui")
- screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- local frame = Instance.new("Frame")
- frame.Size = UDim2.new(0.25, 0, 0.6, 0)
- frame.Position = UDim2.new(0.375, 0, 0.2, 0)
- frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- frame.Active = true
- frame.Draggable = true
- frame.Parent = screenGui
- local creditLabel = Instance.new("TextLabel")
- creditLabel.Size = UDim2.new(1, 0, 0.1, 0)
- creditLabel.Position = UDim2.new(0, 0, 0, 0)
- creditLabel.Text = "By: mandy_dos_candys"
- creditLabel.TextColor3 = Color3.fromRGB(80, 80, 80)
- creditLabel.BackgroundTransparency = 1
- creditLabel.TextSize = 12
- creditLabel.Parent = frame
- local function criarBotao(texto, posicao, coordenadas)
- local button = Instance.new("TextButton")
- button.Size = UDim2.new(0.8, 0, 0.075, 0)
- button.Position = posicao
- button.Text = texto
- button.Parent = frame
- local function teleportar()
- if game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(coordenadas)
- end
- end
- button.MouseButton1Click:Connect(teleportar)
- end
- criarBotao("Merchant", UDim2.new(0.1, 0, 0.125, 0), Vector3.new(1342, 588, -553))
- criarBotao("Waterfall", UDim2.new(0.1, 0, 0.2, 0), Vector3.new(1626, 579, -747))
- criarBotao("Rachel's Cabin", UDim2.new(0.1, 0, 0.275, 0), Vector3.new(1035, 583, -180))
- criarBotao("Farming Zone", UDim2.new(0.1, 0, 0.35, 0), Vector3.new(-295, 462, -1491))
- criarBotao("Boss Arena", UDim2.new(0.1, 0, 0.425, 0), Vector3.new(1135, 584, -710))
- criarBotao("Domain Expansion", UDim2.new(0.1, 0, 0.5, 0), Vector3.new(-3091, 464, -417))
- criarBotao("Tim Shed", UDim2.new(0.1, 0, 0.575, 0), Vector3.new(1398, 584, -223))
- local closeButton = Instance.new("TextButton")
- closeButton.Size = UDim2.new(0.1, 0, 0.1, 0)
- closeButton.Position = UDim2.new(0.99, -25, 0, 0)
- closeButton.Text = "x"
- closeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- closeButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- closeButton.Parent = frame
- local function fecharFrame()
- frame.Visible = false
- end
- closeButton.MouseButton1Click:Connect(fecharFrame)
Advertisement
Add Comment
Please, Sign In to add comment