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

For some reason the 'gui' is destroyed on respawn, no scripts or property is destroying it? [closed]

Asked by
Ben_B 9
4 years ago
Edited 4 years ago
01local enabled = true
02local ding = game.Workspace.Sounds.Ding             -- sound
03local part = game.Workspace.Configuration.DesertScout1  -- name
04local player = game.Players.LocalPlayer
05local mouse = player:GetMouse()
06local UserInputService = game:GetService("UserInputService")
07local PlayerGui = player:WaitForChild("PlayerGui")
08local toolup = PlayerGui:WaitForChild("clickE")
09local maxpickup = 20
10local gui = PlayerGui.HatUI.DesertScoutAdd
11 
12 
13 
14    UserInputService.InputBegan:Connect(function(input,gameProccesedEvent)
15 
View all 37 lines...

Closed as Non-Descriptive by youtubemasterWOW and crywink

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?

1 answer

Log in to vote
0
Answered by 4 years ago

Hello. All gui's reset on spawn unless you set its ResetOnSpawn property to false. You don't even need a script for that.

0
I know, it is set to false Ben_B 9 — 4y
0
Well, you should've said more than just giving us your script. youtubemasterWOW 2741 — 4y
Ad