ok, heres the message part. u need an ontouch script for the button thingy, which takes to olong so im not making one for u.
here it is
local done = false
function showHM(type,msg,parent,name)
local M = Instance.new(type)
M.Name = name
M.Text = msg
M.Parent = parent
end
function noHM(parent,name)
local M = parent:findFirstChild(name)
if (M == nil) then return end
M:remove()
end
function addtoSource(source, text)
source = (source ..text.. "\n")
return source
end
function helpPlayer(player)
showHM("Hint",SlimShady has disabled arms,""HelpMsg")
end
there. that might work as an under script to ur buttong pushy script. or it might not. i just made it up real quick.
|