Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.1
  3.  
  4. -- Instances:
  5.  
  6. local InjectionMessage = Instance.new("ScreenGui")
  7. local MainFrame = Instance.new("Frame")
  8. local PlayerSpec = Instance.new("Frame")
  9. local Welcoming = Instance.new("TextLabel")
  10. local HaveFun = Instance.new("TextLabel")
  11.  
  12. --Properties:
  13.  
  14. InjectionMessage.Name = "InjectionMessage"
  15. InjectionMessage.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16.  
  17. MainFrame.Name = "MainFrame"
  18. MainFrame.Parent = InjectionMessage
  19. MainFrame.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
  20. MainFrame.Position = UDim2.new(0, 0, 0.864864886, 0)
  21. MainFrame.Size = UDim2.new(0, 270, 0, 110)
  22. MainFrame.Style = Enum.FrameStyle.RobloxRound
  23.  
  24. PlayerSpec.Name = "PlayerSpec"
  25. PlayerSpec.Parent = MainFrame
  26. PlayerSpec.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
  27. PlayerSpec.Position = UDim2.new(0.0472290069, 0, 0.00928483158, 0)
  28. PlayerSpec.Size = UDim2.new(0, 229, 0, 25)
  29.  
  30. Welcoming.Name = "Welcoming"
  31. Welcoming.Parent = PlayerSpec
  32. Welcoming.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  33. Welcoming.BackgroundTransparency = 1.000
  34. Welcoming.Position = UDim2.new(0.0297067612, 0, 0.147816718, 0)
  35. Welcoming.Size = UDim2.new(0, 222, 0, 16)
  36. Welcoming.Font = Enum.Font.SourceSans
  37. Welcoming.Text = "Welcome, Player!"
  38. Welcoming.TextColor3 = Color3.fromRGB(255, 255, 255)
  39. Welcoming.TextSize = 17.000
  40.  
  41. HaveFun.Name = "HaveFun"
  42. HaveFun.Parent = MainFrame
  43. HaveFun.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  44. HaveFun.BackgroundTransparency = 1.000
  45. HaveFun.Position = UDim2.new(-0.00194786862, 0, 0.414910883, 0)
  46. HaveFun.Size = UDim2.new(0, 255, 0, 50)
  47. HaveFun.Font = Enum.Font.SourceSans
  48. HaveFun.Text = "Sentinel has loaded. Have fun exploiting kids! :)"
  49. HaveFun.TextColor3 = Color3.fromRGB(255, 255, 255)
  50. HaveFun.TextSize = 17.000
  51. HaveFun.TextWrapped = true
  52.  
  53. Welcoming.Text = "Welcome, " .. game.Players.LocalPlayer.Name .. "!"
  54.  
  55. MainFrame.Position = UDim2.new(0, 0, 1, 0)
  56.  
  57. wait(4)
  58.  
  59. MainFrame:TweenPosition(UDim2.new(0, 0,0.86, 0))
  60.  
  61. wait(5)
  62.  
  63. MainFrame:TweenPosition(UDim2.new(0, 0,1, 0))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement