Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local naeeym = Instance.new("BillboardGui",chara)
- naeeym.Size = UDim2.new(0,100,0,40)
- naeeym.StudsOffset = Vector3.new(0,2,0)
- naeeym.Adornee = chara.Head
- local tecks = Instance.new("TextLabel",naeeym)
- tecks.BackgroundTransparency = 1
- tecks.BorderSizePixel = 0
- tecks.Text = "Shadow Ryuneko - Made by leolion003"
- tecks.Font = "Cartoon"
- tecks.FontSize = "Size24"
- tecks.TextStrokeTransparency = 0
- tecks.TextStrokeColor3 = Color3.new(0,0,0)
- tecks.TextColor3 = Color3.new(1,0,0)
- tecks.Size = UDim2.new(1,0,0.5,0)
- local htecks = Instance.new("TextLabel",naeeym)
- htecks.BackgroundTransparency = 1
- htecks.BorderSizePixel = 0
- htecks.Text = chara.Humanoid.Health.."/"..chara.Humanoid.MaxHealth
- htecks.Font = "Fantasy"
- htecks.FontSize = "Size24"
- htecks.TextStrokeTransparency = 0
- htecks.TextStrokeColor3 = Color3.new(0,0,0)
- htecks.TextColor3 = Color3.new(1,0,0)
- htecks.Size = UDim2.new(1,0,0.5,0)
- htecks.Position = UDim2.new(0,0,.5,0)
- --Chat Function--
- function chatfunc(text)
- chat = coroutine.wrap(function(ttt)
- if chara:FindFirstChild("TalkingBillBoard")~= nil then
- chara:FindFirstChild("TalkingBillBoard"):destroy()
- end
- local naeeym2 = Instance.new("BillboardGui",chara)
- naeeym2.Size = UDim2.new(0,100,0,40)
- naeeym2.StudsOffset = Vector3.new(0,3,0)
- naeeym2.Adornee = chara.Head
- naeeym2.Name = "TalkingBillBoard"
- local tecks2 = Instance.new("TextLabel",naeeym2)
- tecks2.BackgroundTransparency = 1
- tecks2.BorderSizePixel = 0
- tecks2.Text = text
- tecks2.Font = "Fantasy"
- tecks2.FontSize = "Size24"
- tecks2.TextStrokeTransparency = 0
- tecks2.TextColor3 = Color3.new(1,1,1)
- tecks2.TextStrokeColor3 = Color3.new(0,0,0)
- tecks2.Size = UDim2.new(1,0,0.5,0)
- wait(1)
- for i = 1, 5 do
- wait(.01)
- tecks2.Position = tecks2.Position - UDim2.new(0,0,.05,0)
- tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.2
- tecks2.TextTransparency = tecks2.TextTransparency + .2
- end
- naeeym2:Destroy()
- end)
- chat(text)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement