Advertisement
ScriptHubRoblox

mobxd

Feb 12th, 2023
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {Title="The Rooms Mob Notifier"; Text="Seccues loaded!"; Duration=4;})
  2. workspace.ChildAdded:Connect(function(Obj)
  3. if Obj.Name:sub(1, 1) == "A-" and Obj.Name ~= "AmbushMoving" then
  4. game.StarterGui:SetCore("SendNotification", {
  5. Title = Obj.Name .. " Spawned ⚠",
  6. Text = "HIDEEE BROUu!",
  7. Duration = 5
  8. })
  9. end
  10. end)
  11. workspace.ChildRemoved:Connect(function(Obj)
  12. if Obj.Name:sub(1, 1) == "A-" and Obj.Name ~= "AmbushMoving" then
  13. game.StarterGui:SetCore("SendNotification", {
  14. Title = Obj.Name .. " DeSpawned πŸŽ‰",
  15. Text = "Wooohoo!",
  16. Duration = 5
  17. })
  18. end
  19. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement