Answered by
6 years ago Edited 6 years ago
Hi, I'm BlackOrange and I will be helping you out.
Problem:
- You did not specify what type of script this is
- You're looking in the wrong place.
- You need RemoteEvents
Solution:
A simple solution is to restart. First add a RemoteEvent
to ReplicatedStorage
. You can name it anything you want but I'm going to leave it as RemoteEvent
. Next, go to your part and insert a Script
. Inside the script you wanna start by a Touched
event:
1 | script.Parent.Touched:Connect( function (Hit) |
Now what you wanna do is add a LocalScript
into the frame you want to appear. After that go to the LocalScript
and type:
1 | game.ReplicatedStorage.RemoteEvent.OnClientEvent:Connect( function () |
2 | script.Parent.Visible = true |
Now head back to the script and what you wanna do is get the player. The method we are going to use is :GetPlayerFromCharacter()
. First we want to check if a player touched the part though.
1 | script.Parent.Touched:Connect( function (Hit) |
2 | if Hit:IsA( 'BasePart' ) and Hit.Parent:IsA( 'Model' ) and Hit.Parent:FindFirstChild( 'Humanoid' ) and game.Players:FindFirstChild(Hit.Parent.Name) then |
3 | local Player = game.Players:GetPlayerFromCharacter(Hit.Parent) |
4 | game.ReplicatedStorage.RemoteEvent:FireClient(Player) |
And you're done! Hope you learned something.
Best of luck developer!
EDIT: This was written from scratch, if an issue occurs please comment.