For what I know, Touch only works in server script.
For this, I recommend that you use RemoteEvents with FireClient.
On the client event you need to use a Server Script and LocalScript
Your errors: Do not use .Touched
in local scripts (for me it never works.), It is not recommended to clone GUIs by a server script, only by the client is the best way in my opinion. (From what I know, You can put GUI's through the server, however it is recommended to put by Client).
Example:
SERVER
01 | local event = game.ReplicatedStorage.RemoteEvent |
03 | script.Parent.Touched:Connect( function (hit) |
04 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
05 | local player = game:GetService( "Players" ):FindFirstChild(hit.Parent.Name) |
07 | event:FireClient(player) |
09 | elseif hit.Parent.Parent:FindFirstChild( "Humanoid" ) then |
10 | local player = game:GetService( "Players" ):FindFirstChild(hit.Parent.Parent.Name) |
12 | event:FireClient(player) |
CLIENT
1 | game.ReplicatedStorage.RemoteEvent.OnClientEvent:Connect( function () |
Here is your script fixed:
Part Touch - Server Script(Script) - (put in part)
03 | local event = game:GetService( "ReplicatedStorage" ).RemoteEvent |
06 | if tick() - last < = 1 then |
09 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
10 | local player = game:GetService( "Players" ):FindFirstChild(hit.Parent.Name) |
12 | event:FireClient(player) |
14 | elseif hit.Parent.Parent:FindFirstChild( "Humanoid" ) then |
15 | local player = game:GetService( "Players" ):FindFirstChild(hit.Parent.Parent.Name) |
17 | event:FireClient(player) |
24 | script.Parent.Touched:Connect(Touch) |
GetFiredEvent - LocalScript - (put in StarterGui)
01 | repeat wait() until game.Players.LocalPlayer |
02 | local player = game.Players.LocalPlayer |
03 | local playerGui = player.PlayerGui |
05 | local GUI = game:GetService( "ReplicatedStorage" ).Storage.GUIObjects.CrateShopMenu |
07 | local GUI_Holder_Name = "ScreenGUI" |
09 | game.ReplicatedStorage.RemoteEvent.OnClientEvent:Connect( function () |
11 | playerGui:WaitForChild( tostring (GUI_Holder_Name)) |
13 | local Holder = playerGui:FindFirstChild( tostring (GUI_Holder_Name)) |
16 | if Holder:FindFirstChild( tostring (GUI.Name)) = = nil then |
17 | GUI:Clone().Parent = Holder |
20 | warn( "Cannot get HolderGUI" ) |
Hope it helped! :)