nij55

Jay Admin

Apr 19th, 2020
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 16.52 KB | None | 0 0
  1. repeat wait(1) until game:IsLoaded()
  2. --vars
  3. local PlayIntro = true --Change to false to not play intro
  4. local JayPrefix = ";"
  5. local uis = game:GetService("UserInputService")
  6. local plr = game.Players.LocalPlayer
  7. local CoreGui = game.CoreGui--plr.PlayerGui
  8. local MainGui = Instance.new("ScreenGui",CoreGui)
  9. local RunService = game:GetService("RunService")
  10. local Aflyoop = false
  11. local Clip = true
  12. local Col1 = Color3.new(47/255,47/255,47/255)
  13. local Col2 = Color3.new(1,1,1)
  14. local Col3 = Color3.new(0,0,0)
  15. local mouse = plr:GetMouse()
  16. MainGui.Name = "JayAdminMain"
  17. --Noclip
  18. local NoclipLoop = function()
  19. for i, child in pairs(plr.Character:GetDescendants()) do
  20.                 if Clip == false then
  21.                     if child:IsA("BasePart") and child.CanCollide == true then
  22.                         child.CanCollide = false
  23.                 end
  24.                 elseif Clip == true then
  25.                     if child:IsA("BasePart") and child.CanCollide == false then
  26.                         child.CanCollide = true
  27.             end
  28.         end
  29.     end
  30. end
  31. Noclipping = game:GetService('RunService').Stepped:connect(NoclipLoop)
  32. --fly
  33. local mouse = game.Players.LocalPlayer:GetMouse()
  34. repeat wait() until mouse
  35. local torso = plr.Character.Head
  36. local flying = false
  37. local deb = true
  38. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  39. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  40. local maxspeed = 50
  41. local speed = 0
  42. function Fly()
  43. local bg = Instance.new("BodyGyro", torso)
  44. bg.P = 9e4
  45. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  46. bg.cframe = torso.CFrame
  47. local bv = Instance.new("BodyVelocity", torso)
  48. bv.velocity = Vector3.new(0,0.1,0)
  49. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  50. repeat wait()
  51. plr.Character.Humanoid.PlatformStand = true
  52. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  53. speed = speed+.5+(speed/maxspeed)
  54. if speed > maxspeed then
  55. speed = maxspeed
  56. end
  57. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  58. speed = speed-1
  59. if speed < 0 then
  60. speed = 0
  61. end
  62. end
  63. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  64. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  65. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  66. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  67. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  68. else
  69. bv.velocity = Vector3.new(0,0.1,0)
  70. end
  71. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  72. until not flying
  73. ctrl = {f = 0, b = 0, l = 0, r = 0}
  74. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  75. speed = 0
  76. bg:Destroy()
  77. bv:Destroy()
  78. plr.Character.Humanoid.PlatformStand = false
  79. end
  80. local FlyActivator = function()
  81.     if Aflyoop == true then
  82.         Aflyoop = false
  83.         flying = true
  84.     Fly()
  85.     else
  86.     flying = false
  87.     Aflyoop = true
  88.     end
  89. end
  90. mouse.KeyDown:connect(function(key)
  91. if key:lower() == "w" then
  92. ctrl.f = 1
  93. elseif key:lower() == "s" then
  94. ctrl.b = -1
  95. elseif key:lower() == "a" then
  96. ctrl.l = -1
  97. elseif key:lower() == "d" then
  98. ctrl.r = 1
  99. end
  100. end)
  101. mouse.KeyUp:connect(function(key)
  102. if key:lower() == "w" then
  103. ctrl.f = 0
  104. elseif key:lower() == "s" then
  105. ctrl.b = 0
  106. elseif key:lower() == "a" then
  107. ctrl.l = 0
  108. elseif key:lower() == "d" then
  109. ctrl.r = 0
  110. end
  111. end)
  112. --Spam Function
  113. local Spam = false
  114. local SpamFunction = function(Speach)
  115.     while Spam == true do
  116.         game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(Speach, "All")
  117.         wait(1)
  118.     end
  119. end
  120. -- Commands Window
  121. local CommandsWindow = Instance.new("Frame",MainGui)
  122. CommandsWindow.Name = "CommandsWindow"
  123. CommandsWindow.BackgroundColor3 = Color3.new(21/255,21/255,21/255)
  124. CommandsWindow.Size = UDim2.new(0.275,0,0.035,0)
  125. CommandsWindow.Position = UDim2.new(0.3,0,0.3,0)
  126. CommandsWindow.BorderSizePixel = 0
  127. CommandsWindow.Visible = false
  128. CommandsWindow.Active = false
  129. CommandsWindow.Draggable = true
  130. CommandsWindow.Selectable = true
  131. local CommandFrame = Instance.new("ScrollingFrame",CommandsWindow)
  132. CommandFrame.Name = "CommandFrame"
  133. CommandFrame.Size = UDim2.new(1,0,9,0)
  134. CommandFrame.Position = UDim2.new(0,0,1,0)
  135. CommandFrame.BackgroundColor3 = Color3.new(47/255,47/255,47/255)
  136. CommandFrame.BorderSizePixel = 0
  137. CommandFrame.ScrollBarThickness = 10
  138. CommandFrame.TopImage = ""
  139. CommandFrame.BottomImage = ""
  140. CommandFrame.MidImage = "rbxassetid://4933533316"
  141. local CommandLayout =   Instance.new("UIListLayout",CommandFrame)
  142. CommandLayout.Name = "CommandLayout"
  143. local CreateAdminLabel = function(text,name)
  144.     local ALabel = Instance.new("TextLabel",CommandFrame)
  145.     ALabel.Size = UDim2.new(1,0,0.05,0)
  146.     ALabel.Text = text
  147.     ALabel.Name = name
  148.     ALabel.Font = "Legacy"
  149.     ALabel.TextSize = math.ceil(CommandFrame.AbsoluteSize.Y*0.04)
  150.     ALabel.TextColor3 = Col2
  151.     ALabel.BackgroundTransparency = 1
  152.     ALabel.TextXAlignment = "Left"
  153.     CommandFrame.CanvasSize = UDim2.new(0,CommandLayout.AbsoluteContentSize.X,0,CommandLayout.AbsoluteContentSize.Y*1.1)
  154.     CommandLayout.Padding = UDim.new(0,CommandFrame.AbsoluteSize.Y*0.025)
  155.     CommandLayout.SortOrder = Enum.SortOrder.Name
  156. end
  157. local Disc = CreateAdminLabel("Commands CAN be typed with or without caps.","1DiscLabel")
  158. local Disc2 = CreateAdminLabel("The prefix is optional when executing a command.","2Disc2Label")
  159. local FLYLabel = CreateAdminLabel("FLY - Makes you fly","3FLYLabel")
  160. local UNFLYLabel = CreateAdminLabel("UNFLY - Disables Fly","4UNFLYLabel")
  161. local DESTROYLabel = CreateAdminLabel("DESTROY - Destroys Jay Admin","DESTROYLabel")
  162. local UNSHIRTLabel = CreateAdminLabel("UNSHIRT - Removes your shirt","UNSHIRTLabel")
  163. local UNPANTLabel = CreateAdminLabel("UNPANT - Removes your pants","UNPANTLabel")
  164. local NOCLIPLabel = CreateAdminLabel("NOCLIP - Makes you walk through walls","NOCLIPLabel")
  165. local WSLabel = CreateAdminLabel("WS / SPEED (num) - Changes walkspeed to set number","WSLabel")
  166. local GOTOLabel = CreateAdminLabel("GOTO (plr) - Teleports you to a player in the server","GOTOLabel")
  167. local ERIGLabel = CreateAdminLabel("ERIG - Loads ERIG","ERIGLabel")
  168. local CMDSLabel = CreateAdminLabel("CMDS / COMMANDS - Shows commands list (this)","CMDSLabel")
  169. local DEXLabel = CreateAdminLabel("DEX / EXPLORER - Loads Dex Explorer","DEXLabel")
  170. local JPLabel = CreateAdminLabel("JP / JUMPPOWER (num) - Changes JumpPower to set number","JPLabel")
  171. local RJLabel = CreateAdminLabel("RJ / REJOIN - Forces you to rejoin the game","RJLabel")
  172. local SPAMLabel = CreateAdminLabel("SPAM (msg) - Repeats message in chat","SPAMLabel")
  173. local UNSPAMLabel = CreateAdminLabel("UNSPAM - Disabled the Spam command","UNSPAMLabel")
  174. local CEB = Instance.new("TextButton",CommandsWindow)
  175. CEB.Text = "X"
  176. CEB.Size = UDim2.new(0.03,0,1,0)
  177. CEB.Position = UDim2.new(0.005,0,0,0)
  178. CEB.Name = "CEB"
  179. CEB.TextColor3 = Col2
  180. CEB. BackgroundTransparency = 1
  181. CEB.TextSize = math.ceil(CommandsWindow.AbsoluteSize.Y*0.6)
  182. CEB.Font = "Arial"
  183. CEB.LineHeight = 0
  184. CEB.MouseButton1Click:Connect(function()
  185.     CommandsWindow.Visible = false
  186.     CommandsWindow.Active = false
  187. end)
  188. local CMB = Instance.new("TextButton",CommandsWindow)
  189. local CommandFrameOpen = true
  190. CMB.Text = "–"
  191. CMB.Size = UDim2.new(0.03,0,1,0)
  192. CMB.Position = UDim2.new(0.045,0,0,0)
  193. CMB.Name = "CMB"
  194. CMB.TextColor3 = Col2
  195. CMB. BackgroundTransparency = 1
  196. CMB.TextSize = math.ceil(CommandsWindow.AbsoluteSize.Y*0.6)
  197. CMB.Font = "Arial"
  198. CMB.LineHeight = 0
  199. CMB.MouseButton1Click:Connect(function()
  200.     if CommandFrameOpen == true then
  201.         CommandFrameOpen = false
  202.     CommandFrame.Visible = false
  203.     CMB.Text = "+"
  204.     CMB.TextSize = math.ceil(CommandsWindow.AbsoluteSize.Y*0.8)
  205. else
  206.     CommandFrameOpen = true
  207.     CommandFrame.Visible = true
  208.     CMB.Text = "–"
  209.     CMB.TextSize = math.ceil(CommandsWindow.AbsoluteSize.Y*0.6)
  210.     end
  211. end)
  212. -- message Function
  213. local MessageFolder = Instance.new("Folder",MainGui)
  214.     local MessageWindow = Instance.new("Frame",MessageFolder)
  215.     MessageWindow.Visible = false
  216.     MessageWindow.Name = "MessageWindow"
  217.     MessageWindow.Size = UDim2.new(0.15,0,0.2,0)
  218.     MessageWindow.Position = UDim2.new(0.85,0,0.8,0)
  219.     MessageWindow.BackgroundColor3 = Col1
  220.     MessageWindow.BorderSizePixel = 0
  221.     local MessageBar = Instance.new("Frame",MessageWindow)
  222.     MessageBar.BackgroundColor3 = Col3
  223.     MessageBar.BorderSizePixel = 0
  224.     MessageBar.Size = UDim2.new(1,0,0.15,0)
  225.     local MBEB = Instance.new("TextButton",MessageBar)
  226.     MBEB.Text = "X"
  227.     MBEB.Size = UDim2.new(0.075,0,1,0)
  228.     MBEB.Name = "MBEB"
  229.     MBEB.TextColor3 = Col2
  230.     MBEB. BackgroundTransparency = 1
  231.     MBEB.TextSize = math.ceil(MessageBar.AbsoluteSize.Y*0.6)
  232.     MBEB.Font = "Arial"
  233.     MBEB.LineHeight = 0
  234.     local MTittle = Instance.new("TextLabel",MessageBar)
  235.     MTittle.Size = UDim2.new(0.5,0,1,0)
  236.     MTittle.Position = UDim2.new(0.25,0,0,0)
  237.     MTittle.BackgroundTransparency = 1
  238.     MTittle.Font = "Legacy"
  239.     MTittle.TextScaled = true
  240.     MTittle.TextColor3 = Col2
  241.     local MText = Instance.new("TextLabel",MessageWindow)
  242.     MText.TextScaled = true
  243.     MText.BackgroundTransparency = 1
  244.     MText.Size = UDim2.new(1,0,0.85,0)
  245.     MText.Position = UDim2.new(0,0,0.15,0)
  246.     MText.Font = "Legacy"
  247.     MText.TextColor3 = Col2
  248.     MBEB.MouseButton1Click:Connect(function()
  249.         MessageWindow.Visible = false
  250.     end)
  251. local message = function(text,tittle,time)
  252.     MessageWindow.Visible = true
  253.     MTittle.Text = tittle
  254.     MText.Text = text
  255.     wait(time)
  256.     MessageWindow.Visible = false
  257. end
  258. --Players Teleport Function
  259. local GotoPlr = function(FName)
  260.     local TN
  261.     local FP = game.Players:GetChildren()
  262.     local TFN = string.len(FName)
  263.     for i= 1, #FP do
  264.         local child = FP[i]
  265.         local CNC = string.upper(child.Name)
  266.         if string.sub(CNC,1,TFN) == FName then
  267.         plr.Character:SetPrimaryPartCFrame(CFrame.new(child.Character.PrimaryPart.Position) +Vector3.new(-2,0,-2))
  268.         message("You Teleported to:"..child.Name,"Teleported",10)
  269.         end
  270.     end
  271. end
  272. --Jay Admin
  273. local JayBarFrame = Instance.new("Frame",MainGui)
  274. JayBarFrame.Name = "JayBarFrame"
  275. JayBarFrame.BackgroundColor3 = Color3.new(0,0,0)
  276. JayBarFrame.BackgroundTransparency = 0.4
  277. JayBarFrame.Size = UDim2.new(1,0,1,0)
  278. JayBarFrame.Visible = false
  279. local JBar = Instance.new("TextBox",JayBarFrame)
  280. JBar.BackgroundColor3 = Color3.new(47/255,47/255,47/255)
  281. JBar.Size = UDim2.new(1,0,0.05,0)
  282. JBar.Position = UDim2.new(0,0,0.05,0)
  283. JBar.BorderSizePixel = 0
  284. JBar.TextColor3 = Color3.new(1,1,1)
  285. JBar.Text = "Text"
  286. JBar.Font = "GothamBold"
  287. JBar.TextScaled = true
  288. JBar.Name = "JayAdminBar"
  289. local FL = Instance.new("BoolValue",script)
  290. mouse.KeyDown:connect(function(input)
  291.     if  input:lower() == ";" then
  292.         if FL.Value == false then
  293.             FL.Value = true
  294.         JayBarFrame.Visible = true
  295.         JBar:CaptureFocus()
  296.         JBar.FocusLost:Connect(function()
  297.             local msg = string.upper(JBar.Text)
  298.             JayBarFrame.Visible = false
  299.             if  string.sub(msg, 1,4) == JayPrefix.."FLY" or string.sub(msg, 1,3) == "FLY" then
  300.                 Aflyoop = true
  301.                 FlyActivator()
  302.                 message("Flying enabled, use Unfly to discontinue.","Flying",10)
  303.             elseif  string.sub(msg, 1,6) == JayPrefix.."UNFLY" or  string.sub(msg, 1,5) == "UNFLY" then
  304.                 Aflyoop = false
  305.                 FlyActivator()
  306.                 message("Flying disabled, use Fly to enable.","Unflying",10)
  307.             elseif  string.sub(msg, 1,8) == JayPrefix.."DESTROY" or  string.sub(msg, 1,7) == "DESTROY" then
  308.                 message("Destroying ALL of Jay Admin in 5 seconds.","Destroy",4.5)
  309.                 wait(0.5)
  310.                 MainGui:Destroy()
  311.                 script:Destroy()
  312.             elseif  string.sub(msg, 1,8) == JayPrefix.."UNSHIRT" or  string.sub(msg, 1,7) == "UNSHIRT" then
  313.                 local Shirt = plr.Character:FindFirstChildWhichIsA("Shirt")
  314.                 if Shirt == nil then
  315.                     else
  316.                 Shirt:Destroy()
  317.                 message("You took your shirt off lol. Use Unpant to take your pants off.","Took Shirt Off",10)
  318.                 end
  319.             elseif  string.sub(msg, 1,7) == JayPrefix.."UNPANT" or  string.sub(msg, 1,6) == "UNPANT" then
  320.                 local Pants = plr.Character:FindFirstChildWhichIsA("Pants")
  321.                 if Pants == nil then
  322.                     else
  323.                         Pants:Destroy()
  324.                     message("You took your pants off lol. Use Unshirt to take your shirt off.","Took Pants Off",10)
  325.                 end
  326.             elseif  string.sub(msg, 1,7) == JayPrefix.."NOCLIP" or  string.sub(msg, 1,6) == "NOCLIP" then
  327.                 Clip = false
  328.                 message("Nocliped, use Clip to discontinue.","Nocliped",10)
  329.                 elseif  string.sub(msg, 1,5) == JayPrefix.."CLIP" or  string.sub(msg, 1,4) == "CLIP" then
  330.                 Clip = true
  331.                 message("Cliped, use Noclip to discontinue.","Cliped",10)
  332.                 elseif string.sub(msg, 1,4) == JayPrefix.."WS " then
  333.                 plr.Character.Humanoid.WalkSpeed = (string.sub(msg, 5))
  334.                 message("Your WalkSpeed was set to:"..string.sub(msg, 5),"WalkSpeed Changed",10)
  335.             elseif string.sub(msg, 1,3) == "WS " then
  336.                 plr.Character.Humanoid.WalkSpeed = (string.sub(msg, 4))
  337.                 message("Your WalkSpeed was set to:"..string.sub(msg, 4),"WalkSpeed Changed",10)
  338.             elseif string.sub(msg, 1,7) == JayPrefix.."SPEED " then
  339.                 plr.Character.Humanoid.WalkSpeed = (string.sub(msg, 8))
  340.                 message("Your WalkSpeed was set to:"..string.sub(msg, 8),"WalkSpeed Changed",10)
  341.             elseif string.sub(msg, 1,6) == "SPEED " then
  342.                 plr.Character.Humanoid.WalkSpeed = (string.sub(msg, 7))
  343.                 message("Your WalkSpeed was set to:"..string.sub(msg, 7),"WalkSpeed Changed",10)
  344.             elseif string.sub(msg, 1,6) ==  JayPrefix.."GOTO " then
  345.                 GotoPlr(string.sub(msg, 7))
  346.             elseif string.sub(msg, 1,5) ==  "GOTO " then
  347.                 GotoPlr(string.sub(msg, 6))
  348.             elseif string.sub(msg, 1,5) == JayPrefix.."ERIG" then
  349.                 loadstring(game:HttpGet(('https://pastebin.com/raw/Y4sMattZ'),true))()
  350.                 message("ERIG loaded successfully!","ERIG loaded!",10)
  351.             elseif string.sub(msg, 1,4) == "ERIG" then
  352.                 loadstring(game:HttpGet(('https://pastebin.com/raw/Y4sMattZ'),true))()
  353.                 message("ERIG loaded successfully!","ERIG loaded!",10)
  354.             elseif string.sub(msg, 1,9) == JayPrefix.."COMMANDS" or string.sub(msg, 1,8) == "COMMANDS" or string.sub(msg, 1,5) == JayPrefix.."CMDS" or string.sub(msg, 1,4) == "CMDS" then
  355.                 CommandsWindow.Visible = true
  356.                 CommandsWindow.Active = true
  357.             elseif string.sub(msg, 1,4) == JayPrefix.."DEX" or string.sub(msg, 1,3) == "DEX" or string.sub(msg, 1,9) == JayPrefix.."EXPLORER" or string.sub(msg, 1,8) == "EXPLORER" then
  358.                 loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
  359.                 message("Dex loaded successfully!","Dex loaded!",10)
  360.             elseif string.sub(msg, 1,4) == JayPrefix.."JP " then
  361.                 plr.Character.Humanoid.JumpPower = (string.sub(msg, 5))
  362.                 message("Your JumpPower was set to:"..string.sub(msg, 5),"JumpPower Changed",10)
  363.             elseif string.sub(msg, 1,3) == "JP " then
  364.                 plr.Character.Humanoid.JumpPower = (string.sub(msg, 4))
  365.                 message("Your JumpPower was set to:"..string.sub(msg, 4),"JumpPower Changed",10)
  366.             elseif string.sub(msg, 1,11) == JayPrefix.."JUMPPOWER " then
  367.                 plr.Character.Humanoid.JumpPower = (string.sub(msg, 12))
  368.                 message("Your JumpPower was set to:"..string.sub(msg, 12),"JumpPower Changed",10)
  369.             elseif string.sub(msg, 1,10) == "JUMPPOWER " then
  370.                 plr.Character.Humanoid.JumpPower = (string.sub(msg, 11))
  371.                 message("Your JumpPower was set to:"..string.sub(msg, 11),"JumpPower Changed",10)
  372.             elseif string.sub(msg, 1,7) == JayPrefix.."REJOIN" or string.sub(msg, 1,6) == "REJOIN" or string.sub(msg, 1,3) == JayPrefix.."RJ" or string.sub(msg, 1,2) == "RJ" then
  373.                 game:GetService('TeleportService'):Teleport(game.PlaceId)
  374.             elseif string.sub(msg, 1,6) == JayPrefix.."SPAM " then
  375.                 Spam = true
  376.                 SpamFunction((string.sub(msg, 7)))
  377.             elseif string.sub(msg, 1,5) == "SPAM " then
  378.                 Spam = true
  379.                 SpamFunction((string.sub(msg, 6)))
  380.                 message("Started Spamming.","Spam",10)
  381.             elseif string.sub(msg, 1,7) == JayPrefix.."UNSPAM" or string.sub(msg, 1,6) == "UNSPAM" then
  382.                 Spam = false
  383.                 message("Stoped Spamming.","Unspam",10)
  384.                 end
  385.             end)
  386.         wait(1)
  387.         FL.Value = false
  388.         end
  389.     end
  390. end)
  391. if PlayIntro == true then
  392. local IntroFrame = Instance.new("Frame",MainGui)
  393. IntroFrame.BackgroundTransparency = 0.5
  394. IntroFrame.Size = UDim2.new(1,0,1,0)
  395. IntroFrame.BackgroundColor3 = Color3.new(48/255,188/255,237/255)
  396. IntroFrame.BorderSizePixel = 0
  397. local IntroLabel = Instance.new("ImageLabel",IntroFrame)
  398. IntroLabel.BorderSizePixel = 0
  399. IntroLabel.Size = UDim2.new(0.5,0,0.5,0)
  400. IntroLabel.Position = UDim2.new(0.25,0,1,0)
  401. IntroLabel.BackgroundTransparency = 1
  402. IntroLabel.Image = "rbxassetid://4921113189"
  403. IntroLabel:TweenPosition(UDim2.new(0.25,0,0.25,0),Enum.EasingDirection.InOut,Enum.EasingStyle.Elastic,5)
  404. wait(5)
  405. IntroFrame:Destroy()
  406. end
Add Comment
Please, Sign In to add comment