Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Global function messaging script created by Curtis Joseph Winkler
- --Method: _G.describe("Hi player", "Hint") < or message
- --5/12/2015 @ 10:43 AM
- -------------------------------------------------------------------
- local Players = game:GetService('Players')
- local Workspace = game:GetService('Workspace')
- local StarterGui = game:GetService('StarterGui')
- ---
- local Message = Instance.new("Message")
- local Hint = Instance.new("Hint")
- local Destination = Workspace
- ---
- local _G.describe = function(message, type)
- if type.string.match("Message") then
- local Message = Message:Clone(Destination)
- Message.Text = string.match(message)
- elseif type.string.match("Hint") then
- local Hint = Hint:Clone(Destination)
- Hint.Text = string.match(message)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement