video doesnt work btw
(too short message)
Quick question: Is the gui’s enabled property set to true? or the gui’s children’s visible property?
um, well, Hopefully it does eventually.
It’s enabled, only issue is in both server/client view of the explorer, no Gui appears when tool is enabled
I tried out the script for myself and recreated the scenario, it didn’t work, i changed up the script a bit, it did not work (the enabled property was set to true on my recreation)
I tried too but for me it was working good
Since ROBLOX just got updated, I had to restart it, but apparently after it restared, the GUI started working once again as intended.
when i tried it, I used this code:
(It’s a localScript inside the tool by the way, maybe that’s why it worked)
local player = game.Players.LocalPlayer
local equipped = false
script.Parent.Equipped:Connect(function()
equipped = true
clone = game.ReplicatedStorage.ScreenGui:Clone()
clone.Parent = player.PlayerGui
end)
script.Parent.Unequipped:Connect(function()
if equipped then
clone:Destroy()
end
end)
I used a random part named Handle, and just put a basic frame inside the screenGui (which is inside ReplicatedStorage)
Might have been an issue with the update.