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

Can I make GUI visible using server script?

Asked by 5 years ago

this is my script:

1~~~~~~~~~~~~~~~~~

local Part = script.Parent

01local function playerHasTool(player, toolName)
02    local tool = player.Backpack:FindFirstChild(toolName) or player.Character:FindFirstChild(toolName)
03 if tool then
04        return true
05    else
06        return false
07    end
08end
09 
10 
11 
12 
13Part.Touched:Connect(function(HIT)
14    local Player = game.Players:GetPlayerFromCharacter(HIT.Parent)
15    local = HIT.Parent:FindFirstChild("Humanoid")
View all 50 lines...

~~~~~~~~~~~~~~~~~ It is for making GUI visible when a player touches a part, if he has some tools in his backpack. it is NOT A LOCAL SCRIPT but a normal script that is inside the part which has to be touched. However, when the part is touched, the GUI doesn't appear.

Can I know why? Can someone pleeeeeasssssseeee help me?

2 answers

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

Quantum, the best way to do this is a RemoteEvent. Put in a RemoteEvent in ReplicatedStorage and name it "OnTouch".

Server Side:

1wait()
2local RS = game:GetService("ReplicatedStorage")
3local OnTouchEvent = RS:WaitForChild("OnTouch")
4function onTouched(hit)
5    local plr = game:GetService("Players"):GetPlayerFromCharacter(hit.Parent)
6    if plr then
7        OnTouchEvent:FireClient(plr)
8    end
9end

Local Side (Put this under every frame that you want to be visible):

01wait()
02local RS = game:GetService('ReplicatedStorage')
03local OnTouchEvent = RS:WaitForChild("OnTouch")
04local Frame = script.Parent
05OnTouchEvent.OnClientEvent:Connect(function()
06    if Frame.Visible == true then
07        Frame.Visible = false
08    end
09    if Frame.Visible == false then
10        Frame.Visible = true
11    end
12end)

if I helped, please accept this answer. If it didn't, please comment.

Ad
Log in to vote
0
Answered by 5 years ago

I finally got the answer, myself. In the respective guis I had issues with, I inserted a local script each, which directed them to become visible when the part was touched. Here, the part that had to be touched was mediterranean Avenue, so here is how my script was:

01local Part = script.Parent
02    local function playerHasTool(player, toolName)
03        local tool = player.Backpack:FindFirstChild(toolName) or player.Character:FindFirstChild(toolName)
04     if tool then
05            return true
06        else
07            return false
08        end
09    end
10 
11 
12 
13local Gui = script.Parent
14local Medpart = game.Workspace.MediterraneanAvenue
15 
View all 25 lines...

I also got rid of the conditionals that had to deal with these guis in the server script, as I had already inserted a local script. It turns out that only local scripts can modify guis for local Players.

However, if you want a gui to appear to all the clients on the server, you can make use of remote events.

Hope this helps anyone in need in the future!

Answer this question