Advertisement
wallop560

Untitled

Oct 2nd, 2020 (edited)
1,971
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. local GameList = game:HttpGet("https://pastebin.com/raw/nULhDfKz")
  2.  
  3. local HttpService = game:GetService("HttpService")
  4. function GetGame()
  5. local GameList = HttpService:JSONDecode(GameList)
  6. if GameList[tostring(game.PlaceId)] then
  7. return GameList[tostring(game.PlaceId)]
  8. else
  9. return false
  10. end
  11. end
  12.  
  13. local GameInfo = GetGame()
  14. local Script
  15. local GameName
  16. if GameInfo then
  17. Scriptf = game:HttpGet(GameInfo.ScriptLink)
  18. GameName = GameInfo.GameName
  19.  
  20. print(GameName)
  21. local start2 = UDim2.new(0.5,0,6,0)
  22. local start = UDim2.new(1, 0,2.5, 0)
  23. local stop = UDim2.new(5,0,6,0)
  24. local T = .25
  25. local T2 = 1
  26. local function Tween(obj, tinfo, goal)
  27. game:GetService("TweenService"):Create(obj, tinfo, goal):Play()
  28. end
  29. -- Instances:
  30.  
  31. local ScreenGui = Instance.new("ScreenGui")
  32. local Frame = Instance.new("Frame")
  33. local welcome = Instance.new("TextLabel")
  34. local namehere = Instance.new("TextLabel")
  35. local wallophub = Instance.new("TextLabel")
  36.  
  37. --Properties:
  38.  
  39. ScreenGui.Parent = game.CoreGui
  40. ScreenGui.DisplayOrder = 2
  41.  
  42. Frame.Parent = ScreenGui
  43. Frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  44. Frame.Position = UDim2.new(-1, 0,-2.5, 0)
  45. Frame.Rotation = 34.000
  46. Frame.Size = start2
  47. Frame.ZIndex = 10
  48.  
  49. wallophub.Name = "wallophub"
  50. wallophub.Parent = ScreenGui
  51. wallophub.AnchorPoint = Vector2.new(0.5, 0.5)
  52. wallophub.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  53. wallophub.BackgroundTransparency = 1.000
  54. wallophub.Position = UDim2.new(0.5, 0, 0.5, 0)
  55. wallophub.Size = UDim2.new(0, 100, 0, 25)
  56. wallophub.ZIndex = 11
  57. wallophub.Font = Enum.Font.SourceSans
  58. wallophub.Text = "Loading..."
  59. wallophub.TextColor3 = Color3.fromRGB(175, 175, 175)
  60. wallophub.TextSize = 30.000
  61. wallophub.TextStrokeColor3 = Color3.fromRGB(175, 175, 175)
  62. wallophub.TextTransparency = 1.000
  63.  
  64. -- Scripts:
  65.  
  66.  
  67.  
  68. spawn(function()
  69. Frame:TweenSize(stop,Enum.EasingDirection.InOut,Enum.EasingStyle.Quad,T)
  70. wait(.5)
  71. Tween(wallophub,TweenInfo.new(T2,Enum.EasingStyle.Linear),{TextTransparency = 0})
  72. wait(10)
  73. Tween(wallophub,TweenInfo.new(T2,Enum.EasingStyle.Linear),{TextTransparency = 1})
  74. wait(T2 - .5)
  75.  
  76. Frame:TweenPosition(start,Enum.EasingDirection.InOut,Enum.EasingStyle.Quad,T)
  77. wait(T)
  78. end)
  79. wait(3)
  80. loadstring(Scriptf)()
  81. elseif GameInfo == false then
  82. print("Game Not Supported") -- what you want it to do when it does not support the game
  83. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement