MaxproGlitcher

game.CoreGui.PurchasePromptApp.desable

Jan 10th, 2026
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. game.CoreGui.PurchasePromptApp.Enabled = false
  2. local FoundationOverlay = game.CoreGui:FindFirstChild("FoundationOverlay")
  3. if not FoundationOverlay then
  4. local connection
  5. connection = game.CoreGui.ChildAdded:Connect(function(ins)
  6. if ins.Name == "FoundationOverlay" then
  7. ins.Enabled = false
  8. connection:Disconnect()
  9. end
  10. end)
  11. else
  12. game.CoreGui.FoundationOverlay.Enabled = false
  13. end
  14.  
Advertisement
Add Comment
Please, Sign In to add comment