I have an invisible part that triggers when a player touches it. here is my method
1 | function onTouch(Hit) |
2 | hum = Hit.Parent:FindFirstChild( "humanoid" ) |
3 | if hum ~ = nil then |
4 | --here is where the code gets executed |
5 | end |
6 | end |
7 |
8 | script.Parent.Touched:Connect(onTouch) |
However, I cannot figure out the part where you transfer the parent of the Gui from serverstorage to PlayerGui. I even do not know if I should use localscript or regular script.
off the top of my head im pretty sure this should work
01 | function onTouch(Hit) |
02 | hum = Hit.Parent:FindFirstChild( "humanoid" ) |
03 | if hum ~ = nil then |
04 | local clone = game.ServerStorage.NameOfGui:Clone() -- clone the gui |
05 | local player = game.Players:GetPlayerFromCharacter(Hit.Parent) -- grab player |
06 | clone.Parent = player.PlayerGui -- clone into playergui |
07 | end |
08 | end |
09 |
10 | script.Parent.Touched:Connect(onTouch) |