Advertisement
Animescapetower

Loading Gui - Roblox Void

Mar 6th, 2018
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.76 KB | None | 0 0
  1. --Made by anime, this is  the complete idea of a load gui tho
  2. plr = game.Players.LocalPlayer
  3. guimain = plr.PlayerGui
  4. print("So you had my gui welp nice job ".. plr.Name)
  5. local Gui = Instance.new("ScreenGui")
  6. Gui.Parent = guimain
  7.     local Frame = Instance.new("Frame")
  8.   Frame.BackgroundColor3 = Color3.new(255,255,255)
  9. Frame.BackgroundTransparency =0
  10. Frame.Position = UDim2.new(0 ,0 ,0 ,0)
  11. Frame.Size = UDim2.new(1, 0,1, 0)
  12.     Frame.Parent = Gui
  13. local TextBox = Instance.new("TextLabel")
  14.     TextBox.Font = Enum.Font.SciFi
  15.     TextBox.Text = "Loading... 0%"
  16.     TextBox.BackgroundColor3 = Color3.new(255,255,255)
  17.     TextBox.BorderColor3 = Color3.new(255, 255, 255)
  18.     TextBox.Size = UDim2.new(0, 200, 0, 50)
  19.     TextBox.Position = UDim2.new(0.4,0,0.4,0)
  20.     TextBox.Parent = Frame
  21.        TextBox.TextSize = 28.000
  22. local i = 0
  23.  
  24. plr.Character.Humanoid.WalkSpeed = 0
  25.  
  26. for n = 0, 400 do
  27. TextBox.Text = "Loading... Area : [ ".. i .. " / ".. i .. " ]"
  28.     Frame.BackgroundTransparency = i
  29.  
  30.  
  31. i = i + 0.001
  32.  
  33. wait()
  34. i = i + 0.0002
  35. TextBox.Text = "Loading... Gui : [ ".. i .. " / ".. i .. " ]"
  36. wait()
  37. i = i + 0.0001
  38. TextBox.Text = "Loading... Meme : [ ".. i .. " / ".. i .. " ]"
  39. wait()
  40. i = i + 0.0043
  41. TextBox.Text = "Loading... Sector : [ ".. i .. " / ".. i .. " ]"
  42. end
  43. TextBox.TextTransparency = 0.1
  44. wait(0.02)
  45. TextBox.TextTransparency = 0.2
  46. wait(0.02)
  47. TextBox.TextTransparency = 0.3
  48. wait(0.02)
  49. TextBox.TextTransparency = 0.4
  50. wait(0.02)
  51. TextBox.TextTransparency = 0.5
  52. wait(0.02)
  53. TextBox.TextTransparency = 0.6
  54. wait(0.02)
  55. TextBox.TextTransparency = 0.7
  56. wait(0.02)
  57. TextBox.TextTransparency = 0.8
  58. wait(0.02)
  59. TextBox.TextTransparency = 0.9
  60. wait(0.02)
  61. TextBox.TextTransparency = 1.00
  62. wait(0.02)
  63. TextBox.Visible = false
  64. plr.Character.Humanoid.WalkSpeed = 16
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement