Advertisement
LastLine

Untitled

Dec 8th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2. Title = "Future";
  3. Text = "Future has been injected, enjoy!";
  4. Duration = 60;
  5. })
  6. wait(1)
  7. local ScreenGui = Instance.new('ScreenGui')
  8. local TextLabel = Instance.new('TextLabel')
  9. ScreenGui.Parent = game.CoreGui
  10. TextLabel.Parent = ScreenGui
  11. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  12. TextLabel.BackgroundTransparency = 0.8
  13. TextLabel.Position = UDim2.new(1, -110, 1, -40)
  14. TextLabel.Size = UDim2.new(0, 100, 0, 30)
  15. TextLabel.Font = Enum.Font.SourceSans
  16. TextLabel.Text = 'Powered By Future'
  17. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  18. TextLabel.TextSize = 30
  19. TextLabel.TextScaled = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement