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:
1 | part = Script.Parent |
2 | gui = player.PlayerGui.ClothesGui.MainFrame |
3 | while player touching part: |
4 | gui.visible = True |
5 | else |
6 | gui.visible = False |
Any help appreciated, Many Thanks, Mineblocks47
Hello!
First: you need to insert Script
in the part and place this:
01 | local RemoteEvent = Instance.new( "RemoteEvent" ) |
02 | RemoteEvent.Parent = game.Workspace |
03 | RemoteEvent.Name = "ClothesEvent" |
04 |
05 | function onTouched(hit) |
06 | local Player = game.Players:GetPlayerFromCharacter(hit.Parent) |
07 | RemoteEvent:FireClient(Player) |
08 | end |
09 |
10 | script.Parent.Touched:Connect(onTouched) |
Second: Insert LocalScript
in MainFrame and place this:
1 | game.Workspace:WaitForChild( "ClothesEvent" ) |
2 | local debounce = false |
3 |
4 | game.Workspace.ClothesEvent.OnClientEvent:Connect( function () |
5 | if debounce = = false then |
6 | script.Parent.Visible = true |
7 | debounce = true |
8 | end |
9 | end ) |
Also if you want to close the shop you should to insert TextButton
in MainFrame and insert LocalScript
and place this:
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 | script.Parent.Parent.Visible = false |
3 | end ) |
I hope that helps you. Good luck.
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:
01 | local Delay = 1 -- Time it takes to scroll down / up |
02 |
03 | function 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(UDim 2. 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(UDim 2. new(. 5 , 0 ,-. 5 , 0 ), "Out" , "Quad" ,Delay, true ) |
15 | wait(Delay) |