1. -- say "i wish i had an invisible car"
  2. local mt = getrawmetatable(game)
  3. local old = mt.__namecall
  4. setreadonly(mt,false)
  5. mt.__namecall = newcclosure(function(self, ...)
  6. local args = {...}
  7. if getnamecallmethod() == 'FireServer' and self.Name == 'SayMessageRequest' then
  8. if args[1] == "i wish i had an invisible car" then
  9. game.StarterGui:SetCore("SendNotification", {
  10. Title = "Your car fine sir";
  11. Text = "IS HERE";
  12. Icon = "";
  13. Duration = 5;
  14. })
  15. local hi = Instance.new("Sound")
  16. hi.Name = "Sound"
  17. hi.SoundId = "http://www.roblox.com/asset/?id=5095315287"
  18. hi.Volume = 2
  19. hi.Looped = true
  20. hi.archivable = false
  21. hi.Parent = game.Workspace
  22. hi:Play()
  23. local speaker = game.Players.LocalPlayer
  24. local anims = speaker.Character.Animate
  25. local sit = anims.sit:FindFirstChildOfClass("Animation").AnimationId
  26. anims.idle:FindFirstChildOfClass("Animation").AnimationId = sit
  27. anims.walk:FindFirstChildOfClass("Animation").AnimationId = sit
  28. anims.run:FindFirstChildOfClass("Animation").AnimationId = sit
  29. anims.jump:FindFirstChildOfClass("Animation").AnimationId = sit
  30. speaker.Character:FindFirstChildOfClass('Humanoid').HipHeight = 3
  31. speaker.Character:FindFirstChildOfClass('Humanoid').WalkSpeed = 64
  32. wait(1)
  33. end
  34. end
  35. return old(self, unpack(args))
  36. end)