01 | local enabled = true |
02 | local ding = game.Workspace.Sounds.Ding -- sound |
03 | local part = game.Workspace.Configuration.DesertScout 1 -- name |
04 | local player = game.Players.LocalPlayer |
05 | local mouse = player:GetMouse() |
06 | local UserInputService = game:GetService( "UserInputService" ) |
07 | local PlayerGui = player:WaitForChild( "PlayerGui" ) |
08 | local toolup = PlayerGui:WaitForChild( "clickE" ) |
09 | local maxpickup = 20 |
10 | local gui = PlayerGui.HatUI.DesertScoutAdd |
11 |
12 |
13 |
14 | UserInputService.InputBegan:Connect( function (input,gameProccesedEvent) |
15 |
This question has been closed because its title or content does not adequately describe the problem you are trying to solve.
Please ensure that your question pertains to your actual problem, rather than your attempted solution. That is, you were trying to solve problem X, and you thought solution Y would work, but instead of asking about X when you ran into trouble, you asked about Y.
Why was this question closed?
Hello. All gui's reset on spawn unless you set its ResetOnSpawn
property to false. You don't even need a script for that.