Advertisement
DrakerMaker

storyswip

Jan 18th, 2020
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. local dialogue = Instance.new("Sound", owner.Character.Head)
  2. dialogue.Volume = 5
  3. dialogue.SoundId = "rbxassetid://177266782"
  4. local BillboardGui = Instance.new("BillboardGui")
  5. local Frame = Instance.new("Frame")
  6. local Text = Instance.new("TextBox")
  7. BillboardGui.MaxDistance = 50
  8. BillboardGui.Name = "Type"
  9. BillboardGui.Parent = owner.Character.Head
  10. BillboardGui.Active = true
  11. BillboardGui.Size = UDim2.new(35.5, 0, 15, 0)
  12. BillboardGui.StudsOffset = Vector3.new(-0.5, 6, 0)
  13.  
  14. Frame.Name = "Framer"
  15. Frame.Parent = BillboardGui
  16. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  17. Frame.BackgroundTransparency = 1
  18. Frame.BorderSizePixel = 0
  19. Frame.Position = UDim2.new(0.209999993, 0, 0.209999993, 0)
  20. Frame.Selectable = true
  21. Frame.Size = UDim2.new(0.600000024, 0, 0.699999988, 0)
  22.  
  23. Text.Name = "Labeler"
  24. Text.Parent = Frame
  25. Text.BackgroundColor3 = Color3.new(0, 0, 0)
  26. Text.BackgroundTransparency = 1
  27. Text.BorderColor3 = Color3.new(0, 0, 0)
  28. Text.Position = UDim2.new(0.200000003, 0, 0.150000006, 0)
  29. Text.Size = UDim2.new(0.600000024, 0, 0.699999988, 0)
  30. Text.ClearTextOnFocus = false
  31. Text.Text = ""
  32. Text.TextColor3 = BrickColor.new("Really black").Color
  33. Text.TextSize = 100
  34. Text.TextScaled = true
  35. walkincrease = 0.1
  36. chatdeb = false
  37. function speak(talk, delay)
  38. if chatdeb == false then
  39. chatdeb = true
  40. msg = talk
  41. Text.TextColor3 = BrickColor.new("Really black").Color
  42. BillboardGui.StudsOffset = Vector3.new(-0.5, 6, 0)
  43. for i = 1,string.len(msg) do
  44. wait(delay)
  45. Text.Text = talk:sub(1,i)
  46. dialogue:Play()
  47. end
  48. chatdeb = false
  49. end
  50. end
  51. owner.Chatted:Connect(function(m)
  52. if m == "/e story1" then
  53. speak("so i met this really toxic guy named quinn and he was so toxic he masskilled so many times his iq 0 and uh he cant count to ten lmaoooo he is -6 years old yea thats it")
  54. end
  55. if m == "/e story2" then
  56. speak("i was uhh playing bloxburg hosting a school when i came across SUCH TOXIC people and one said honey how was school the kid there was a green chunk in the mac n cheese (THERES NOT EVEN A MAC N CHEESE ITEM TO COOK IDIOTS) and i was threatening them that i had synapse and uh i asked them how many subscribers they had and they said 105190509120 to try to scare me i was NOT SCARED and irl i was dying of laughter on how stupid they were")
  57. end
  58. if m == "/e story3" then
  59. speak("i met a jevil so i killed him then he banished me and i told him im friends with multiple mods and he stopped")
  60. end
  61. if m == "/e story4" then
  62. speak("G A Y")
  63. end
  64. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement