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

Is It Possible To Make A Gui Happen If A Player Touches The Spawn And If So How?

Asked by 9 years ago

I just want to see how it's done. You don't have to make the script I just want to know how it looks such as connect:onTouch(function), FindFirstChild. This is how I think it would be done, but just tell me how it would be done please?

local SP = game.Workspace.SpawnLocation.connect:OnTouch(function)

I have no idea afterwards...Pathetic I know, but please help me!

0
Sorry about this rushed answer I was tired when I wrote it. GreekGodOfMLG 244 — 9y

1 answer

Log in to vote
3
Answered by
woodengop 1134 Moderation Voter
9 years ago

Yes it is Possible, just need to place the event correctly.

workspace.SpawnLocation.Touched:connect(function(hit)
    -- code
end)
Ad

Answer this question