Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- || 📜 AUTHOR: @4zx16 || GUI PAD (WHITELISTED) || ONLY CHANGE PAD ENABLED AND STORAGE AND LIST.
- ]]
- local PadEnabled = true
- local Storage = script.Name
- local List = {"ur name"}
- local function HitPad(hit)
- local h = hit.Parent:FindFirstChild("Humanoid")
- local player = game.Players:FindFirstChild(h.Parent.Name)
- if h ~= nil and PadEnabled == true then
- PadEnabled = false
- for i, v in pairs(List) do
- if player.Name == v then
- print("Giving Gui to ".. player.Name.. " now...")
- wait(1)
- Storage:Clone().Parent = player.PlayerGui
- PadEnabled = true
- end
- end
- end
- end
- script.Parent.Touched:Connect(HitPad)
Advertisement
Add Comment
Please, Sign In to add comment