Advertisement
DarknessHub

Motivation Buddy

Sep 7th, 2024 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.77 KB | Source Code | 0 0
  1. --[[
  2.            A Script I made for fun.
  3.            
  4.            Not obfuscated to support weak exploit compatibility.
  5.            Have fun, skids.
  6.            
  7.            :)
  8. ]]
  9.  
  10. if MOTIVATION_LOADED then
  11.     return
  12. end
  13.  
  14. getgenv().MOTIVATION_LOADED = true
  15.  
  16. local CoreGui = game:GetService("CoreGui")
  17. local StarterGui = game:GetService("StarterGui")
  18.  
  19. local MotivationGui = Instance.new("ScreenGui", CoreGui)
  20. local ImageLabel = Instance.new("ImageLabel", MotivationGui)
  21. local Speech = Instance.new("ImageLabel", ImageLabel)
  22. local TextLabel = Instance.new("TextLabel", Speech)
  23. local Dialogue = Instance.new("Sound", CoreGui)
  24.  
  25. MotivationGui.Name = "MotivationGui"
  26. MotivationGui.ResetOnSpawn = false
  27. MotivationGui.Enabled = false
  28.  
  29. ImageLabel.BorderSizePixel = 0
  30. ImageLabel.Image = "rbxassetid://6978635547"
  31. ImageLabel.Position = UDim2.new(0.72, 0, 1.2, 0)
  32. ImageLabel.Size = UDim2.new(0, 292, 0, 289)
  33. ImageLabel.BackgroundTransparency = 1
  34.  
  35. Speech.Name = "Speech"
  36. Speech.BorderSizePixel = 0
  37. Speech.BackgroundTransparency = 1
  38. Speech.Image = "rbxassetid://18429233593"
  39. Speech.Size = UDim2.new(0, 160, 0, 152)
  40. Speech.Position = UDim2.new(-0.195, 0, -0.325, 0)
  41.  
  42. TextLabel.BackgroundTransparency = 1
  43. TextLabel.Font = Enum.Font.IndieFlower
  44. TextLabel.BackgroundTransparency = 1
  45. TextLabel.BorderSizePixel = 0
  46. TextLabel.Position = UDim2.new(0.075, 0, 0.283, 0)
  47. TextLabel.Size = UDim2.new(0, 138, 0, 50)
  48. TextLabel.Text = ""
  49. TextLabel.TextSize = 25
  50. TextLabel.TextWrapped = true
  51.  
  52. Dialogue.Name = "Dialogue"
  53. Dialogue.SoundId = "rbxassetid://2633343843"
  54.  
  55. StarterGui:SetCore("SendNotification", {
  56.     Title = "MOTIVATION BUDDY LOADED!!",
  57.     Text = "(private edition fr)",
  58.     Icon = "rbxassetid://6978635547",
  59.     Duration = .3
  60. })
  61.  
  62. local Text
  63.  
  64. local Replies = {
  65.     "Keep the good work up!",
  66.     "Nice, you're doing great!",
  67.     "Wow, that's cool.",
  68.     "I'm funny",
  69.     "I'm a sigma right?",
  70.     "What are you doing",
  71.     "You're super nice!",
  72.     "idk what to say",
  73.     "e",
  74.     "am i cool",
  75.     "sigma word yes",
  76.     "Hello world!",
  77.     "kai cenat fr",
  78.     "EEEEEEEEEEEEEEEEE",
  79.     "dude im bored :sob:",
  80.     "do you like the script",
  81.     "hey don't skid or i will be mad",
  82.     "hawk tuah",
  83.     "crazy",
  84.     "scari alert",
  85.     "ngl you sigma",
  86.     "fanum taxing 24/7 fr",
  87.     "wowwwwwwwwwwww e",
  88.     "ggs ez"
  89. }
  90.  
  91. local function setText(msg)
  92.     Text = msg
  93.  
  94.     for i = 1, #Text do
  95.         TextLabel.Text = string.sub(Text, 1, i)
  96.  
  97.         task.wait(.02)
  98.         Dialogue:Play()
  99.     end
  100. end
  101.  
  102. local function Motivate()
  103.     MotivationGui.Enabled = true
  104.     ImageLabel:TweenPosition(UDim2.new(0.72, 0, 0.664, 0))
  105.  
  106.     local msg = Replies[math.random(1, #Replies)]
  107.  
  108.     setText(msg)
  109.  
  110.     task.wait(3)
  111.  
  112.     ImageLabel:TweenPosition(UDim2.new(0.72, 0, 1.2, 0))
  113.    
  114.     task.wait(1)
  115.    
  116.     MotivationGui.Enabled = false
  117.     TextLabel.Text = ""
  118. end
  119.  
  120. while task.wait(7) do
  121.     Motivate()
  122. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement