Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- A Script I made for fun.
- Not obfuscated to support weak exploit compatibility.
- Have fun, skids.
- :)
- ]]
- if MOTIVATION_LOADED then
- return
- end
- getgenv().MOTIVATION_LOADED = true
- local CoreGui = game:GetService("CoreGui")
- local StarterGui = game:GetService("StarterGui")
- local MotivationGui = Instance.new("ScreenGui", CoreGui)
- local ImageLabel = Instance.new("ImageLabel", MotivationGui)
- local Speech = Instance.new("ImageLabel", ImageLabel)
- local TextLabel = Instance.new("TextLabel", Speech)
- local Dialogue = Instance.new("Sound", CoreGui)
- MotivationGui.Name = "MotivationGui"
- MotivationGui.ResetOnSpawn = false
- MotivationGui.Enabled = false
- ImageLabel.BorderSizePixel = 0
- ImageLabel.Image = "rbxassetid://6978635547"
- ImageLabel.Position = UDim2.new(0.72, 0, 1.2, 0)
- ImageLabel.Size = UDim2.new(0, 292, 0, 289)
- ImageLabel.BackgroundTransparency = 1
- Speech.Name = "Speech"
- Speech.BorderSizePixel = 0
- Speech.BackgroundTransparency = 1
- Speech.Image = "rbxassetid://18429233593"
- Speech.Size = UDim2.new(0, 160, 0, 152)
- Speech.Position = UDim2.new(-0.195, 0, -0.325, 0)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Font = Enum.Font.IndieFlower
- TextLabel.BackgroundTransparency = 1
- TextLabel.BorderSizePixel = 0
- TextLabel.Position = UDim2.new(0.075, 0, 0.283, 0)
- TextLabel.Size = UDim2.new(0, 138, 0, 50)
- TextLabel.Text = ""
- TextLabel.TextSize = 25
- TextLabel.TextWrapped = true
- Dialogue.Name = "Dialogue"
- Dialogue.SoundId = "rbxassetid://2633343843"
- StarterGui:SetCore("SendNotification", {
- Title = "MOTIVATION BUDDY LOADED!!",
- Text = "(private edition fr)",
- Icon = "rbxassetid://6978635547",
- Duration = .3
- })
- local Text
- local Replies = {
- "Keep the good work up!",
- "Nice, you're doing great!",
- "Wow, that's cool.",
- "I'm funny",
- "I'm a sigma right?",
- "What are you doing",
- "You're super nice!",
- "idk what to say",
- "e",
- "am i cool",
- "sigma word yes",
- "Hello world!",
- "kai cenat fr",
- "EEEEEEEEEEEEEEEEE",
- "dude im bored :sob:",
- "do you like the script",
- "hey don't skid or i will be mad",
- "hawk tuah",
- "crazy",
- "scari alert",
- "ngl you sigma",
- "fanum taxing 24/7 fr",
- "wowwwwwwwwwwww e",
- "ggs ez"
- }
- local function setText(msg)
- Text = msg
- for i = 1, #Text do
- TextLabel.Text = string.sub(Text, 1, i)
- task.wait(.02)
- Dialogue:Play()
- end
- end
- local function Motivate()
- MotivationGui.Enabled = true
- ImageLabel:TweenPosition(UDim2.new(0.72, 0, 0.664, 0))
- local msg = Replies[math.random(1, #Replies)]
- setText(msg)
- task.wait(3)
- ImageLabel:TweenPosition(UDim2.new(0.72, 0, 1.2, 0))
- task.wait(1)
- MotivationGui.Enabled = false
- TextLabel.Text = ""
- end
- while task.wait(7) do
- Motivate()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement