Advertisement
Guest User

zeke

a guest
Mar 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. e = 3
  2. inf = 1238091231231
  3. PLR = game.Players.LocalPlayer
  4. red = Instance.new("NumberValue")
  5. red.Parent = PLR
  6. red.Value = math.random(1,12),math.random(3,40),math.random(5,120)
  7.  
  8. red3 = Instance.new("StringValue")
  9. red3.Parent = game.Workspace.CurrentCamera
  10. red3.Value = "Name: ".. PLR.Name
  11.  
  12. local part = Instance.new("Part")
  13. part.Name = "Part1"
  14. part.Parent = workspace
  15. local text = "why would i make a game now"
  16. local text2 = "Because its fun"
  17. local player = script.Parent.Parent
  18. local gui = Instance.new("PlayerGui")
  19. gui.Parent = PLR.PlayerGui
  20. gui.Name = "ZEKE"
  21. print(red.Value..": ".. red3.Value)
  22. local sound = Instance.new("Sound",gui)
  23. sound.SoundId = "http://www.roblox.com/asset/?id=14863866"
  24. sound.Pitch = 1
  25. sound.Volume = 0.8
  26.  
  27. local frame = gui.Frame
  28. local text1 = frame.TextLabel
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40. --okay now for the code and stuff
  41.  
  42.  
  43.  
  44.  
  45. sum = red
  46.  
  47. sum = 25 + 8
  48. print(sum)
  49. print(10 * 5)
  50.  
  51. --for n = 1,4 do [Using codes like this does not work so lets use the basics of making a local script first off, functions, like this]
  52.  
  53.  
  54.  
  55.  
  56. --end
  57.  
  58.  
  59. t = {}
  60. for i = 0,20000 do
  61. table.insert(t,i,i)
  62. end
  63.  
  64. print(collectgarbage("count"))
  65. t = nil
  66. print(collectgarbage("count"))
  67. --Script one:
  68. _G.variable = "This a variable in _G."
  69.  
  70. --Script two:
  71. while _G.variable == nil do wait() end --make sure that script one sets the variable before this one tries to read it
  72. print(_G.variable)
  73.  
  74. print (gcinfo())
  75. a=collectgarbage("count")
  76.  
  77. print(a)
  78. var1 = 7
  79. var2 = 9
  80. getfenv()["var3"] = 11
  81. for i, v in pairs(getfenv()) do
  82. print(i, " = ", v)
  83. end
  84. -- Ran from a Script in workspace called "Script"
  85. local function a()
  86. print(debug.traceback())
  87. end
  88. function b()
  89. a()
  90. end
  91. local function c()
  92. b()
  93. end
  94. c()
  95. while true do
  96. debug.profilebegin("custom_label")
  97. t = {1,2,"a","d",c = 12, q = 20}
  98. for i,v in pairs(t) do
  99. print(i,v)
  100. end
  101. wait(1)
  102. debug.profileend()
  103. wait()
  104. end
  105. for k,v in pairs(t) do
  106. --body
  107. end
  108. t = {1,2,"a","d",c = 12, q = 20}
  109. for i,v in pairs(t) do
  110. print(i,v)
  111. end
  112.  
  113. t2 = {4,2,"2","Mean",c = 30, q = 20, var1,t}
  114. for i,v in pairs(t2) do
  115. print(i,v)
  116. end
  117.  
  118. t3 = {4,3,2,"2","a","d",a,t = 50,t2 = 20,b = 10,"r",a = 54,a = 43,a = 1,"a3","5"}
  119. for i,v in pairs(t3) do
  120. warn(i,v)
  121. end
  122.  
  123. function YouCanRepeatMe()
  124.  
  125. end
  126.  
  127.  
  128.  
  129. _G = print("Dt2193080123912sjda89ud8asaksasd89asd7")-- idk what dis does
  130.  
  131. _G = _VERSION
  132.  
  133.  
  134. while true do--Loops Gui
  135. for i = 1,string.len(text),1 do
  136. sound:play()
  137. text1.Text = string.sub(text,1,i)
  138. wait(0.1)
  139. end
  140.  
  141. for i = 1,string.len(text2),1 do
  142. sound:play()
  143. text1.Text = string.sub(text2,1,i)
  144. wait(0.1)
  145. end
  146.  
  147. coroutine.resume(coroutine.create(function()
  148. for i = 0,20,0.01 do
  149. text1.Position = UDim2.new(0,0,i,0)
  150. wait()
  151. end
  152. end))
  153. for i = 1,50,1 do
  154. text1.TextTransparency = text1.TextTransparency + 0.02
  155. wait(0.02)
  156. end
  157. for i = 0,20,0.01 do
  158. text1.Position = UDim2.new(0,0,-i,0)
  159. wait()
  160. end
  161.  
  162. for i = 1,50,1 do
  163. text1.TextTransparency = text1.TextTransparency - 0.02
  164. wait(0.02)
  165. end
  166. end
  167.  
  168. --Now working things here now
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement