Advertisement
ExodiaForce

api

Nov 14th, 2024
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. local api = {}
  2. api.notify = function(msg)
  3. game.ReplicatedStorage.Notify:Fire(msg) -- idfk if its a remoteevent, remotefunction or some shit, but ill find out soon.
  4. end
  5. api.prompt = function(title,content,choices)
  6.     game.ReplicatedStorage.Prompt:Fire(title,content,choices)
  7.     end
  8. return api
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement