Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do i add like a setting gui? [closed]

Asked by 3 years ago

I tried to watch every YouTube video on how to make one but since they won't work and I checked the scripts.

0
Do You Mean Like A Gui That Lets You Teleport To Places? nathanjohns123 20 — 3y

Closed as Not Constructive by RazzyPlayz and Ziffixture

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 3 years ago

What I Would Do Was Make a Part Name It Whatever Use It As A variable And Then Use MoveTo() To Get To A Place

Part = game.Workspace.TeleportPart
script.Parent.MouseButton1Click:Connect(function()
    game.Workspace:WaitForChild(script.Parent.Parent.Parent.Parent.Name):MoveTo(Part.Position)
end)

Although Thats Just Some Simple Code But If You Use It It Has To Be A Local Script

Ad