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

Open a GUI While standing on part?

Asked by 6 years ago

Hi! I am attempting to make a working walk-in-wardrobe, where when you walk in, and touch the part, it will open the GUI, Then when you walk out, it detects that, and closes the gui. So the GUI is open on a while loop, Similar to this psuedo code:

1part = Script.Parent
2gui = player.PlayerGui.ClothesGui.MainFrame
3while player touching part:
4gui.visible = True
5else
6gui.visible = False

Any help appreciated, Many Thanks, Mineblocks47

0
If you don't have experience with Lua then there's no point in helping you giving you free code. Learn by starting at developer.roblox.com xPolarium 1388 — 6y
0
lol HaveASip 494 — 6y
0
Use Touched and TouchEnded events HaveASip 494 — 6y
0
GUI wont really work with touching a brick that easily.. you need to use Remote Events. HeyItzDanniee 252 — 6y

2 answers

Log in to vote
2
Answered by
Voxozor 162
6 years ago

Hello! First: you need to insert Script in the part and place this:

01local RemoteEvent = Instance.new("RemoteEvent")
02RemoteEvent.Parent = game.Workspace
03RemoteEvent.Name = "ClothesEvent"
04 
05function onTouched(hit)
06    local Player = game.Players:GetPlayerFromCharacter(hit.Parent)
07    RemoteEvent:FireClient(Player)
08end
09 
10script.Parent.Touched:Connect(onTouched)

Second: Insert LocalScript in MainFrame and place this:

1game.Workspace:WaitForChild("ClothesEvent")
2local debounce = false
3 
4game.Workspace.ClothesEvent.OnClientEvent:Connect(function ()
5    if debounce == false then
6        script.Parent.Visible = true
7        debounce = true
8    end
9end)

Also if you want to close the shop you should to insert TextButton in MainFrame and insert LocalScript and place this:

1script.Parent.MouseButton1Click:Connect(function()
2    script.Parent.Parent.Visible = false
3end)

I hope that helps you. Good luck.

Ad
Log in to vote
0
Answered by
fr2013 88
6 years ago

If you want a TweenPosition, then I got one for you. First insert a normal Script inside of the part you want to touch. Then put the ScreenGUI inside of the script and name it for example "Shop" in your script. (If you want to change the name of your ScreenGUI, then also change it in the script that ahs the name Shop) And then once you put it all in it should look like this: Part > Script > Shop

Here's the script:

01local Delay = 1 -- Time it takes to scroll down / up
02 
03function onTouch(hit)
04 
05    if game.Players:FindFirstChild(hit.Parent.Name) then
06        local player = game.Players:GetPlayerFromCharacter(hit.Parent)
07        if not player.PlayerGui:FindFirstChild("Shop") then
08            local gui = script.Shop:Clone()
09            gui.Parent = player.PlayerGui
10 
11            gui.Frame:TweenPosition(UDim2.new(.5,0,.5,0),"Out","Quad",Delay,true)
12            repeat wait() until (player.Character.HumanoidRootPart.Position - script.Parent.Position).magnitude > 5
13 
14            gui.Frame:TweenPosition(UDim2.new(.5,0,-.5,0),"Out","Quad",Delay,true)
15            wait(Delay)
View all 22 lines...

Answer this question