nij55

Erig v2 Build 1

Jun 10th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 82.70 KB | None | 0 0
  1. --[[Created by Nij55
  2. This is ERIG v3 - a WIP Script
  3. The Original script is here: https://pastebin.com/JWXG3JdU
  4. ERIG v2 Script is https://pastebin.com/XyJD2HwP
  5. --]]
  6. repeat wait(1) until game:IsLoaded()
  7. local Version = "3.1.0 - (stable)"
  8. local plr = game.Players.LocalPlayer
  9. local CoreGui = game.CoreGui
  10. local MainGui = Instance.new("ScreenGui",CoreGui)
  11. local HTTPService = game:GetService("HttpService")
  12. local mouse = plr:GetMouse()
  13. local C2TPkeydown = false
  14. local on = true
  15. local F13Set
  16. local uis = game:GetService("UserInputService")
  17. local CmdBindFrame = Instance.new("Frame",MainGui)
  18. CmdBindFrame.Visible = false
  19. local Saves = {ClickToTeleport = {Key,Abreviation = "",Toggle = false},Sprint = {Key,Abreviation = "",WalkSpeed = 60,Toggle = false}, SaveVersion = Version , JayPrefix = ";", CmdBinds = {}}
  20. local Commands = {{CmdId = 1, Name = "fly", Disc = "Makes you fly."},
  21. {CmdId = 2, Name = "unfly", Disc = "Disables fly."},
  22. {CmdId = 3, Name = "fspeed / fs [num]", Disc = "Controls the speed in which you fly (defualt is 1)."},
  23. {CmdId = 4, Name = "destroy / remove", Disc = "Removes ERIG from your game."},
  24. {CmdId = 5, Name = "noclip", Disc = "Allows you to walk through objects."},
  25. {CmdId = 6, Name = "clip", Disc = "Disabled noclip."},
  26. {CmdId = 7, Name = "nude / naked", Disc = "Removes your Shirt and Pants."},
  27. {CmdId = 8, Name = "goto / tp [plr]", Disc = "Teleports you to a player."},
  28. {CmdId = 9, Name = "disableprompts", Disc = "Removes purchase prompts from the game."},
  29. {CmdId = 10, Name = "jp / jumppower [num]", Disc = "Sets the height of your player jumps (defualt is 50)."},
  30. {CmdId = 11, Name = "ws / speed / walkspeed", Disc = "Sets the speed of your character (defualt is 16)."},
  31. {CmdId = 12, Name = "dex / explorer", Disc = "Loads Dex."},
  32. {CmdId = 13, Name = "spam [msg]", Disc = "Rapidly chats message."},
  33. {CmdId = 14, Name = "unspam", Disc = "Disable spam."},
  34. {CmdId = 15, Name = "chat [msg]", Disc = "Chats message."},
  35. {CmdId = 16, Name = "rj / rejoin", Disc = "Replaces you in your server."},
  36. {CmdId = 17, Name = "antiidle / antiafk", Disc = "Disables afk."},
  37. {CmdId = 18, Name = "execute / exec [msg]", Disc = "Execute code."},
  38. {CmdId = 19, Name = "creeper / creep", Disc = "Makes you look like a creeper and kills you (also a tool bypass for Bloxton)."},
  39. {CmdId = 21, Name = "view [plr]", Disc = "Moves camera to a player."},
  40. {CmdId = 22, Name = "unview", Disc = "Disables view."},
  41. {CmdId = 23, Name = "sit", Disc = "Makes you sit."},
  42. {CmdId = 24, Name = "unsit", Disc = "Disables sit."},
  43. {CmdId = 25, Name = "maxzoom / mz [num]", Disc = "Changes your maxzoom."},
  44. {CmdId = 26, Name = "unlockfirstperson / uncamlock", Disc = "Unlocks first person."},
  45. {CmdId = 27, Name = "firstperson / camlock", Disc = "Does the first person."},
  46. {CmdId = 28, Name = "save / savefile", Disc = "Saves everything."},
  47. {CmdId = 29, Name = "reset", Disc = "Kills you."},
  48. {CmdId = 30, Name = "refresh", Disc = "Kills you then teleports you to your position."}}
  49. if game.PlaceId == 155615604 then
  50.     table.insert(Commands,20,{CmdId = 20, Name = "removefade", Disc = "Removes the frame from Prison Life."})
  51. end
  52.  
  53. function SaveFile()
  54.     pcall(function()
  55.          writefile("ERIG Saves.erig",HTTPService:JSONEncode(Saves))
  56.     end)
  57. end
  58. function StringGen(Length,NumbersEnabled,SpecialsEnabled,CapsEnabled)
  59.     local Letters = {"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"}
  60.     local Specials = {"!","@","#","$","%","^","&","*","(",")","_","-","=","+","[","]","{","}",";",":","'","",",",".","?","<",">","/","|","`","~"," "}                                                  
  61.     local GeneratedString = ""
  62.     local FullArray = {}
  63.     if Length < 0 then
  64.         return GeneratedString
  65.     end
  66.     local SiftedAmount = 0
  67.     for i, v in pairs(Letters) do
  68.                 table.insert(FullArray,v)
  69.     end
  70.     if CapsEnabled then
  71.         for i, v in pairs(Letters) do
  72.             table.insert(FullArray,string.upper(v))
  73.         end
  74.     end
  75.     if SpecialsEnabled then
  76.         for i, v in pairs(Specials) do
  77.             table.insert(FullArray,v)
  78.         end
  79.     end
  80.     if NumbersEnabled then
  81.         table.insert(FullArray,0)  
  82.         local NumbersAdded = 0
  83.         while NumbersAdded > 9 do
  84.             table.insert(FullArray,NumbersAdded +1)
  85.         end
  86.     end
  87.     while SiftedAmount < Length do
  88.         local SelectedChar = math.random(1,#FullArray)
  89.         GeneratedString = GeneratedString..FullArray[SelectedChar]
  90.         SiftedAmount = SiftedAmount +1
  91.     end
  92.     return GeneratedString
  93. end
  94. MainGui.Name = "ErigV3"
  95. MainGui.DisplayOrder = 2147483647
  96. MainGui.ResetOnSpawn = false
  97. local F1 = Instance.new("Frame",MainGui)
  98. F1.Name = "AdminMain"
  99. F1.Size = UDim2.new(0,MainGui.AbsoluteSize.X*0.4,0,MainGui.AbsoluteSize.Y*0.3)
  100. F1.Position = UDim2.new(0,0,1,-30)
  101. F1.BackgroundTransparency = 1
  102. F1.Active = true
  103. F1.MouseEnter:Connect(function()
  104.     F1:TweenPosition(UDim2.new(0,0,0,MainGui.AbsoluteSize.Y*0.7),"Out","Linear",0.25,true)
  105. end)
  106. F1.MouseLeave:Connect(function()
  107.     F1:TweenPosition(UDim2.new(0,0,1,-30),"Out","Linear",0.25,true)
  108. end)
  109. local TopBar = Instance.new("Frame",F1)
  110. TopBar.Name = "TopBar"
  111. TopBar.Size = UDim2.new(1,0,0,30)
  112. TopBar.BackgroundColor3 = Color3.fromRGB(60,60,60)
  113. TopBar.BorderSizePixel = 0
  114. TopBar.Active = true
  115. local ExitButton = Instance.new("TextButton",TopBar)
  116. ExitButton.Size = UDim2.new(0,22,0,22)
  117. ExitButton.Position = UDim2.new(1,-22,0,0)
  118. ExitButton.BackgroundTransparency = 1
  119. ExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  120. ExitButton.BorderSizePixel = 1
  121. ExitButton.Name = "ExitButton"
  122. ExitButton.BorderMode = "Inset"
  123. ExitButton.Text = "X"
  124. ExitButton.TextSize = 15
  125. ExitButton.Font = "SourceSansSemibold"
  126. ExitButton.TextColor3 = Color3.new(1,1,1)
  127. ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
  128. ExitButton.AutoButtonColor = false
  129. ExitButton.MouseEnter:Connect(function()
  130.     ExitButton.BackgroundTransparency = 0
  131. end)
  132. ExitButton.MouseLeave:Connect(function()
  133.     ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
  134.     ExitButton.BackgroundTransparency = 1
  135. end)
  136. ExitButton.MouseButton1Down:Connect(function()
  137.     ExitButton.BorderColor3 = Color3.fromRGB(26,87,149)
  138.     ExitButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
  139. end)
  140. ExitButton.MouseButton1Up:Connect(function()
  141.     ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
  142.     ExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  143. end)
  144. ExitButton.MouseButton1Click:Connect(function()
  145.     SaveFile()
  146.     wait(0.1)
  147.     MainGui:Destroy()
  148.     on = false
  149.     script:Destroy()
  150. end)
  151. local AdminLogo = Instance.new("ImageLabel",TopBar)
  152. AdminLogo.Name = "Logo"
  153. AdminLogo.Image = "rbxassetid://5028412551"
  154. AdminLogo.Size = UDim2.new(0,35,0,30)
  155. AdminLogo.BackgroundTransparency = 1
  156. local AdminTittle = Instance.new("TextLabel",TopBar)
  157. AdminTittle.Size = UDim2.new(0.2,0,0,30)
  158. AdminTittle.Position = UDim2.new(0.4,0,0,0)
  159. AdminTittle.TextColor3 = Color3.new(1,1,1)
  160. AdminTittle.Font = "SourceSans"
  161. AdminTittle.Name = "Tittle"
  162. AdminTittle.TextSize = 18
  163. AdminTittle.BackgroundTransparency = 1
  164. AdminTittle.Text = "ERIG - v"..Version
  165. local JayBar = Instance.new("TextBox",F1)
  166. JayBar.Name = "JayBar"
  167. JayBar.Position = UDim2.new(0,0,0,30)
  168. JayBar.Size = UDim2.new(0.25,0,0.1,0)
  169. JayBar.BackgroundColor3 = Color3.fromRGB(45,45,45)
  170. JayBar.BorderSizePixel = 0
  171. JayBar.PlaceholderText = "Press "..Saves.JayPrefix.." or click to use command bar."
  172. JayBar.PlaceholderColor3 = Color3.fromRGB(90,90,90)
  173. JayBar.Text = ""
  174. JayBar.TextScaled = true
  175. JayBar.Font = "SourceSans"
  176. JayBar.TextColor3 = Color3.new(1,1,1)
  177. JayBar.TextScaled = true
  178. local PreFrame = Instance.new("Frame",F1)
  179. PreFrame.Name = "PreFrame"
  180. PreFrame.Size = UDim2.new(0.25,0,0.1,0)
  181. PreFrame.Position = UDim2.new(0,0,0.1,30)
  182. PreFrame.BackgroundColor3 = Color3.fromRGB(51,51,51)
  183. PreFrame.BorderColor3 = Color3.fromRGB(51,51,51)
  184. PreFrame.BorderMode = "Inset"
  185. PreFrame.BorderSizePixel = 0
  186. local JayPreChange = Instance.new("TextBox",PreFrame)
  187. JayPreChange.Name = "JayPrefixChangerChange"
  188. JayPreChange.Position = UDim2.new(0.9,0,0,0)
  189. JayPreChange.Size = UDim2.new(0.1,0,1,0)
  190. JayPreChange.BackgroundColor3 = Color3.fromRGB(45,45,45)
  191. JayPreChange.BorderSizePixel = 0
  192. JayPreChange.PlaceholderColor3 = Color3.fromRGB(90,90,90)
  193. JayPreChange.Text = Saves.JayPrefix
  194. JayPreChange.TextScaled = true
  195. JayPreChange.Font = "SourceSans"
  196. JayPreChange.TextColor3 = Color3.new(1,1,1)
  197. JayPreChange.TextScaled = true
  198. JayPreChange:GetPropertyChangedSignal("Text"):Connect(function()
  199.     JayPreChange.Text = string.sub(JayPreChange.Text,1,1)
  200.     Saves.JayPrefix = string.sub(JayPreChange.Text,1,1)
  201.     JayBar.PlaceholderText = "Press "..Saves.JayPrefix.." or click to use command bar."
  202.     SaveFile()
  203. end)
  204. local PreLabel = Instance.new("TextLabel",PreFrame)
  205. PreLabel.Size = UDim2.new(0.8,0,1,0)
  206. PreLabel.TextXAlignment = "Left"
  207. PreLabel.TextColor3 = Color3.new(1,1,1)
  208. PreLabel.Font = "SourceSans"
  209. PreLabel.Name = "PreLabel"
  210. PreLabel.TextSize = 20
  211. PreLabel.BackgroundTransparency = 1
  212. PreLabel.Text = "Edit prefix:"
  213. local JCmdsFrame = Instance.new("Frame",F1)
  214. JCmdsFrame.Name = "JCmdsFrame"
  215. JCmdsFrame.Size = UDim2.new(0.25,0,0.1,0)
  216. JCmdsFrame.Position = UDim2.new(0,0,0.2,30)
  217. JCmdsFrame.BackgroundColor3 = Color3.fromRGB(51,51,51)
  218. JCmdsFrame.BorderColor3 = Color3.fromRGB(51,51,51)
  219. JCmdsFrame.BorderMode = "Inset"
  220. JCmdsFrame.BorderSizePixel = 0
  221. local CmdsLabel = Instance.new("TextLabel",JCmdsFrame)
  222. CmdsLabel.Size = UDim2.new(1,0,1,0)
  223. CmdsLabel.TextColor3 = Color3.new(1,1,1)
  224. CmdsLabel.Font = "SourceSans"
  225. CmdsLabel.Name = "CmdsLabel"
  226. CmdsLabel.TextSize = 20
  227. CmdsLabel.BackgroundTransparency = 1
  228. CmdsLabel.Text = "Commands List:"
  229. local CommandDisc = Instance.new("Frame",MainGui)
  230. CommandDisc.Name = "CommandDisc"
  231. CommandDisc.Size = UDim2.new(0,150,0,10)
  232. CommandDisc.BackgroundColor3 = Color3.fromRGB(60,60,60)
  233. CommandDisc.BorderSizePixel = 0
  234. CommandDisc.Visible = false
  235. local CommandDiscLabel = Instance.new("TextLabel",CommandDisc)
  236. CommandDiscLabel.Size = UDim2.new(1,0,0,65)
  237. CommandDiscLabel.TextColor3 = Color3.new(1,1,1)
  238. CommandDiscLabel.BackgroundColor3 = Color3.fromRGB(51,51,51)
  239. CommandDiscLabel.Position = UDim2.new(0,0,1,0)
  240. CommandDiscLabel.BorderSizePixel = 0
  241. CommandDiscLabel.Font = "SourceSans"
  242. CommandDiscLabel.Name = "CommandDiscLabel"
  243. CommandDiscLabel.TextSize = 15
  244. CommandDiscLabel.TextWrapped = true
  245. mouse.Move:Connect(function()
  246.     CommandDisc.Position = UDim2.new(0,mouse.X,0,mouse.Y -75)
  247. end)
  248. local CmdsFrameList = Instance.new("ScrollingFrame",F1)
  249. CmdsFrameList.Name = "CmdsFrameList"
  250. CmdsFrameList.MidImage = "rbxassetid://4933533316"
  251. CmdsFrameList.TopImage = "rbxassetid://4933533316"
  252. CmdsFrameList.BottomImage = "rbxassetid://4933533316"
  253. CmdsFrameList.ScrollBarImageColor3 = Color3.fromRGB(45,45,45)
  254. CmdsFrameList.Size = UDim2.new(0.25,0,0.7,-30)
  255. CmdsFrameList.Position = UDim2.new(0,0,0.3,30)
  256. CmdsFrameList.BackgroundColor3 = Color3.fromRGB(60,60,60)
  257. CmdsFrameList.BorderSizePixel = 0
  258. local CmdsFrameLayout = Instance.new("UIListLayout",CmdsFrameList)
  259. CmdsFrameLayout.FillDirection = "Vertical"
  260. CmdsFrameLayout.Padding = UDim.new(0,15)
  261. CmdsFrameLayout.HorizontalAlignment = "Left"
  262. CmdsFrameLayout.VerticalAlignment = "Top"
  263. CmdsFrameLayout.SortOrder = "Name"
  264. function CreateCmdLabel(id,cmd,disc)
  265.     local Label = Instance.new("TextLabel",CmdsFrameList)
  266.     Label.Size = UDim2.new(1,0,0,CmdsFrameList.AbsoluteSize.Y*0.1)
  267.     CmdsLabel.TextColor3 = Color3.new(1,1,1)
  268.     Label.Font = "SourceSans"
  269.     Label.Name = "Cmd"..id
  270.     Label.TextColor3 = Color3.new(1,1,1)
  271.     Label.TextXAlignment = "Left"
  272.     Label.TextSize = 15
  273.     Label.BackgroundTransparency = 1
  274.     Label.Text = cmd
  275.     CmdsFrameList.CanvasSize = UDim2.new(0,0,0,CmdsFrameLayout.AbsoluteContentSize.Y)
  276.     Label.MouseEnter:Connect(function()
  277.         if Label.Visible == true then
  278.             CommandDiscLabel.Text = disc
  279.             CommandDisc.Visible = true
  280.         end
  281.     end)
  282.     Label.MouseLeave:Connect(function()
  283.         CommandDisc.Visible = false
  284.         CommandDiscLabel.Text = "cmd"
  285.     end)
  286. end
  287. for i, v in pairs(Commands) do
  288.     CreateCmdLabel(v.CmdId,v.Name,v.Disc)
  289. end
  290. JayBar:GetPropertyChangedSignal("Text"):Connect(function()
  291.     local MatchAmount = 0
  292.     if JayBar.Text == " " or nil then
  293.         for i,v in pairs(CmdsFrameList:GetChildren()) do
  294.             if v.ClassName == "TextLabel" then
  295.                 v.Visible = true
  296.             end
  297.         end
  298.         else
  299.         for i,v in pairs(CmdsFrameList:GetChildren()) do
  300.             if v.ClassName == "TextLabel" then
  301.                 if string.match(v.Text,JayBar.Text) then
  302.                     MatchAmount = MatchAmount +1
  303.                     v.Name = MatchAmount
  304.                     v.Visible = true
  305.                     else
  306.                     v.Visible = false
  307.                 end
  308.             end
  309.         end
  310.     end
  311. end)
  312. local F2 = Instance.new("Frame",F1)
  313. F2.BackgroundColor3 = Color3.fromRGB(51,51,51)
  314. F2.BorderColor3 = Color3.fromRGB(51,51,51)
  315. F2.BorderMode = "Inset"
  316. F2.BorderSizePixel = 0
  317. F2.Active = true
  318. F2.Name = "InternalFrame"
  319. F2.Size = UDim2.new(0.75,0,1,-30)
  320. F2.Position = UDim2.new(0.25,0,0,30)
  321. local F4 = Instance.new("Frame",F2)
  322. F4.BackgroundTransparency = 1
  323. F4.Active = true
  324. F4.Name = "CommandFrame"
  325. F4.Size = UDim2.new(1,0,0.1,0)
  326. F4.Position = UDim2.new(0,0,0.875,0)
  327. local ExecBar = Instance.new("TextBox",F4)
  328. ExecBar.Name = "ExecBar"
  329. ExecBar.Position = UDim2.new(0.025,0,0,0)
  330. ExecBar.Size = UDim2.new(0.75,0,1,0)
  331. ExecBar.BackgroundColor3 = Color3.fromRGB(45,45,45)
  332. ExecBar.BorderSizePixel = 0
  333. ExecBar.PlaceholderText = "Script executor"
  334. ExecBar.PlaceholderColor3 = Color3.fromRGB(90,90,90)
  335. ExecBar.Text = ""
  336. ExecBar.TextScaled = true
  337. ExecBar.Font = "SourceSans"
  338. ExecBar.TextColor3 = Color3.new(1,1,1)
  339. ExecBar.TextScaled = true
  340. local ExecButton = Instance.new("TextButton",F4)
  341. ExecButton.Name = "ExecuteButton"
  342. ExecButton.Size = UDim2.new(0.15,0,1,0)
  343. ExecButton.Position = UDim2.new(0.825,0,0,0)
  344. ExecButton.BackgroundTransparency = 0
  345. ExecButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
  346. ExecButton.BorderSizePixel = 0
  347. ExecButton.BorderMode = "Inset"
  348. ExecButton.Text = "Execute"
  349. ExecButton.TextSize = 15
  350. ExecButton.Font = "SourceSans"
  351. ExecButton.TextColor3 = Color3.new(1,1,1)
  352. ExecButton.BorderColor3 = Color3.fromRGB(145,145,145)
  353. ExecButton.AutoButtonColor = false
  354. local NotificationFolder = Instance.new("Folder",MainGui)
  355. NotificationFolder.Name = "NotificationFolder"
  356. function Notify(text,textsize,tittle,tittlesize,lenght)
  357.     NotificationFolder:ClearAllChildren()
  358.     wait(0.1)
  359.     local NotificationFrame = Instance.new("Frame",NotificationFolder)
  360.     NotificationFrame.Name = "Notification"
  361.     NotificationFrame.Size = UDim2.new(0,250,0.0,30)
  362.     NotificationFrame.Position = UDim2.new(1,-250,1,0)
  363.     NotificationFrame.BackgroundColor3 = Color3.fromRGB(60,60,60)
  364.     NotificationFrame.BorderSizePixel = 0
  365.     NotificationFrame.Visible = true
  366.     local NotTittle = Instance.new("TextLabel",NotificationFrame)
  367.     NotTittle.Size = UDim2.new(0,100,1,0)
  368.     NotTittle.BackgroundTransparency = 1
  369.     NotTittle.TextSize = tittlesize
  370.     NotTittle.Text = tittle
  371.     NotTittle.TextColor3 = Color3.new(1,1,1)
  372.     NotTittle.Font = "SourceSans"
  373.     NotTittle.Position = UDim2.new(0,75,0,0)
  374.     local NotificationSecondary = Instance.new("Frame",NotificationFrame)
  375.     NotificationSecondary.Name = "NotificationSecondary"
  376.     NotificationSecondary.Size = UDim2.new(0,250,0.0,150)
  377.     NotificationSecondary.Position = UDim2.new(0,0,1,0)
  378.     NotificationSecondary.BackgroundColor3 = Color3.fromRGB(51,51,51)
  379.     NotificationSecondary.BorderSizePixel = 0
  380.     NotificationSecondary.Visible = true
  381.     local NotLabel = Instance.new("TextLabel",NotificationSecondary)
  382.     NotLabel.Size = UDim2.new(1,0,1,0)
  383.     NotLabel.BackgroundTransparency = 1
  384.     NotLabel.TextSize = textsize
  385.     NotLabel.TextWrapped = true
  386.     NotLabel.Text = text
  387.     NotLabel.TextColor3 = Color3.new(1,1,1)
  388.     NotLabel.Font = "SourceSans"
  389.     local NotExitButton = Instance.new("TextButton",NotificationFrame)
  390.     NotExitButton.Size = UDim2.new(0,22,0,22)
  391.     NotExitButton.Position = UDim2.new(1,-22,0,0)
  392.     NotExitButton.BackgroundTransparency = 1
  393.     NotExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  394.     NotExitButton.BorderSizePixel = 1
  395.     NotExitButton.Name = "NotExitButton"
  396.     NotExitButton.BorderMode = "Inset"
  397.     NotExitButton.Text = "X"
  398.     NotExitButton.TextSize = 15
  399.     NotExitButton.Font = "SourceSansSemibold"
  400.     NotExitButton.TextColor3 = Color3.new(1,1,1)
  401.     NotExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
  402.     NotExitButton.AutoButtonColor = false
  403.     NotExitButton.MouseEnter:Connect(function()
  404.         NotExitButton.BackgroundTransparency = 0
  405.     end)
  406.     NotExitButton.MouseLeave:Connect(function()
  407.         NotExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
  408.         NotExitButton.BackgroundTransparency = 1
  409.     end)   
  410.     NotExitButton.MouseButton1Down:Connect(function()
  411.         NotExitButton.BorderColor3 = Color3.fromRGB(26,87,149)
  412.         NotExitButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
  413.     end)
  414.     NotExitButton.MouseButton1Up:Connect(function()
  415.         NotExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
  416.         NotExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  417.     end)
  418.     NotExitButton.MouseButton1Click:Connect(function()
  419.         NotificationFolder:ClearAllChildren()
  420.     end)
  421.     NotificationFrame:TweenPosition(UDim2.new(1,-250,1,-180),"Out","Linear",0.5,true)
  422.     wait(0.5)
  423.     wait(lenght)
  424.     NotificationFolder:ClearAllChildren()
  425. end
  426. ExecButton.MouseEnter:Connect(function()
  427.     ExecButton.BorderSizePixel = 1
  428.     ExecButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  429. end)
  430. ExecButton.MouseLeave:Connect(function()
  431.     ExecButton.BorderSizePixel = 0
  432.     ExecButton.BorderColor3 = Color3.fromRGB(145,145,145)
  433.     ExecButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
  434. end)
  435. ExecButton.MouseButton1Down:Connect(function()
  436.     ExecButton.BorderSizePixel = 1
  437.     ExecButton.BorderColor3 = Color3.fromRGB(26,87,149)
  438.     ExecButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
  439. end)
  440. ExecButton.MouseButton1Up:Connect(function()
  441.     ExecButton.BorderSizePixel = 1
  442.     ExecButton.BorderColor3 = Color3.fromRGB(145,145,145)
  443.     ExecButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  444. end)
  445. ExecButton.MouseButton1Click:Connect(function()
  446.     loadstring(ExecBar.Text)()
  447. end)
  448. ExecBar.FocusLost:Connect(function(enter)
  449.     if enter then
  450.         loadstring(ExecBar.Text)()
  451.     end
  452. end)
  453. function CreateMainScrollFrame(name,Visible)
  454.     local Frame = Instance.new("ScrollingFrame",F2)
  455.     Frame.Name = name
  456.     Frame.Visible = Visible
  457.     Frame.MidImage = "rbxassetid://4933533316"
  458.     Frame.TopImage = "rbxassetid://4933533316"
  459.     Frame.BottomImage = "rbxassetid://4933533316"
  460.     Frame.ScrollBarImageColor3 = Color3.fromRGB(45,45,45)
  461.     Frame.Size = UDim2.new(0.775,0,0.825,0)
  462.     Frame.Position = UDim2.new(0.2,0,0.025,0)
  463.     Frame.BackgroundColor3 = Color3.fromRGB(60,60,60)
  464.     Frame.BorderSizePixel = 0
  465.     local FrameLayout = Instance.new("UIGridLayout",Frame)
  466.     FrameLayout.HorizontalAlignment = "Center"
  467.     FrameLayout.VerticalAlignment = "Center"
  468.     FrameLayout.CellSize = UDim2.new(0,Frame.AbsoluteSize.X*0.25,0,Frame.AbsoluteSize.Y*0.2)
  469.     FrameLayout.CellPadding = UDim2.new(0.025,0,0.025,0)
  470.     FrameLayout.FillDirectionMaxCells = 3
  471.     return {Frame,FrameLayout}
  472. end
  473. function CreateMainFrame(name,Visible,Active)
  474.     local Frame = Instance.new("Frame",F2)
  475.     Frame.Name = name
  476.     Frame.Size = UDim2.new(0.775,0,0.825,0)
  477.     Frame.Position = UDim2.new(0.2,0,0.025,0)
  478.     Frame.BackgroundColor3 = Color3.fromRGB(60,60,60)
  479.     Frame.BorderSizePixel = 0
  480.     Frame.Visible = Visible
  481.     Frame.Active = Active
  482.     return Frame
  483. end
  484. local F12 = CreateMainFrame("MiscFrames1",true,true)
  485. local C2TPToggleButton = Instance.new("TextButton",F12)
  486. C2TPToggleButton.Size = UDim2.new(0,F12.AbsoluteSize.Y*0.05,0,F12.AbsoluteSize.Y*0.05)
  487. C2TPToggleButton.Position = UDim2.new(0.0125,0,0,F12.AbsoluteSize.Y*0.035)
  488. C2TPToggleButton.BackgroundColor3 = Color3.fromRGB(224,224,224)
  489. C2TPToggleButton.BorderSizePixel = 1
  490. C2TPToggleButton.TextScaled = true
  491. C2TPToggleButton.TextColor3 = Color3.fromRGB(64,64,64)
  492. C2TPToggleButton.LineHeight = 0
  493. C2TPToggleButton.Text = " "
  494. C2TPToggleButton. BorderColor3 = Color3.fromRGB(64,64,64)
  495. C2TPToggleButton.MouseButton1Click:Connect(function()
  496.     if Saves.ClickToTeleport.Toggle == true then
  497.         C2TPToggleButton.Text = " "
  498.         Saves.ClickToTeleport.Toggle = false
  499.     elseif Saves.ClickToTeleport.Toggle == false then
  500.         C2TPToggleButton.Text = "X"
  501.         Saves.ClickToTeleport.Toggle = true
  502.     end
  503. end)
  504. local F13 = Instance.new("Frame",MainGui)
  505. F13.Name = "KeyFrame"
  506. F13.Size = UDim2.new(0,MainGui.AbsoluteSize.X*0.2,0.0,30)
  507. F13.Position = UDim2.new(0.3,0,0.3,0)
  508. F13.BackgroundColor3 = Color3.fromRGB(60,60,60)
  509. F13.BorderSizePixel = 0
  510. F13.Draggable = true
  511. F13.Visible = false
  512. F13.Selectable = true
  513. local C2TP = Instance.new("TextLabel",F12)
  514. C2TP.Name = "C2TPLabel"
  515. C2TP.Position = UDim2.new(0.05,0,0,0)
  516. C2TP.Size = UDim2.new(0.2,0,0,F12.AbsoluteSize.Y*0.1)
  517. C2TP.Font = "SourceSans"
  518. C2TP.TextScaled = true
  519. C2TP.Text = "Click to Teleport"
  520. C2TP.TextColor3 = Color3.new(1,1,1)
  521. C2TP.BackgroundTransparency = 1
  522. C2TP.TextXAlignment = "Left"
  523. local C2TP2 = Instance.new("TextLabel",F12)
  524. C2TP2.Name = "C2TP2"
  525. C2TP2.Position = UDim2.new(0,0,0,F12.AbsoluteSize.Y*0.1)
  526. C2TP2.Size = UDim2.new(0.2,0,0,F12.AbsoluteSize.Y*0.1)
  527. C2TP2.Font = "SourceSans"
  528. C2TP2.TextScaled = true
  529. C2TP2.Text = "No button set to teleport."
  530. C2TP2.TextColor3 = Color3.new(1,1,1)
  531. C2TP2.BackgroundTransparency = 1
  532. local C2TP2Change = Instance.new("TextButton",F12)
  533. C2TP2Change.Name = "C2TP2Change"
  534. C2TP2Change.BackgroundColor3 = Color3.fromRGB(45,45,45)
  535. C2TP2Change.BorderSizePixel = 0
  536. C2TP2Change.BorderMode = "Inset"
  537. C2TP2Change.Text = "Change"
  538. C2TP2Change.TextScaled = true
  539. C2TP2Change.Font = "SourceSans"
  540. C2TP2Change.Size = UDim2.new(0.15,0,0,F12.AbsoluteSize.Y*0.1)
  541. C2TP2Change.Position = UDim2.new(0.025,0,0,F12.AbsoluteSize.Y*0.2)
  542. C2TP2Change.TextColor3 = Color3.new(1,1,1)
  543. C2TP2Change.BorderColor3 = Color3.fromRGB(145,145,145)
  544. C2TP2Change.AutoButtonColor = false
  545. C2TP2Change.MouseEnter:Connect(function()
  546.     C2TP2Change.BorderSizePixel = 1
  547.     C2TP2Change.BackgroundColor3 = Color3.fromRGB(52,69,85)
  548. end)
  549. C2TP2Change.MouseLeave:Connect(function()
  550.     C2TP2Change.BorderSizePixel = 0
  551.     C2TP2Change.BorderColor3 = Color3.fromRGB(145,145,145)
  552.     C2TP2Change.BackgroundColor3 = Color3.fromRGB(45,45,45)
  553. end)
  554. C2TP2Change.MouseButton1Down:Connect(function()
  555.     C2TP2Change.BorderSizePixel = 1
  556.     C2TP2Change.BorderColor3 = Color3.fromRGB(26,87,149)
  557.     C2TP2Change.BackgroundColor3 = Color3.fromRGB(45,77,109)
  558. end)
  559. C2TP2Change.MouseButton1Up:Connect(function()
  560.     C2TP2Change.BorderSizePixel = 1
  561.     C2TP2Change.BorderColor3 = Color3.fromRGB(145,145,145)
  562.     C2TP2Change.BackgroundColor3 = Color3.fromRGB(52,69,85)
  563. end)
  564. C2TP2Change.MouseButton1Click:Connect(function()
  565.     F13Set = "tp"
  566.     F13.F14.SetBindButton.Text = "Set bind"
  567.     F13.Visible = true
  568.     F13.Active = true
  569. end)
  570. local SprintToggleButton = Instance.new("TextButton",F12)
  571. SprintToggleButton.Size = UDim2.new(0,F12.AbsoluteSize.Y*0.05,0,F12.AbsoluteSize.Y*0.05)
  572. SprintToggleButton.Position = UDim2.new(0.0125,0,0,F12.AbsoluteSize.Y*0.335)
  573. SprintToggleButton.BackgroundColor3 = Color3.fromRGB(224,224,224)
  574. SprintToggleButton.BorderSizePixel = 1
  575. SprintToggleButton.TextScaled = true
  576. SprintToggleButton.TextColor3 = Color3.fromRGB(64,64,64)
  577. SprintToggleButton.LineHeight = 0
  578. SprintToggleButton.Text = " "
  579. SprintToggleButton. BorderColor3 = Color3.fromRGB(64,64,64)
  580. SprintToggleButton.MouseButton1Click:Connect(function()
  581.     if Saves.Sprint.Toggle == true then
  582.         SprintToggleButton.Text = " "
  583.         Saves.Sprint.Toggle = false
  584.     elseif Saves.Sprint.Toggle == false then
  585.         SprintToggleButton.Text = "X"
  586.         Saves.Sprint.Toggle = true
  587.     end
  588. end)
  589. local Sprint = Instance.new("TextLabel",F12)
  590. Sprint.Name = "SprintLabel"
  591. Sprint.Position = UDim2.new(0.05,0,0,F12.AbsoluteSize.Y*0.3)
  592. Sprint.Size = UDim2.new(0.2,0,0,F12.AbsoluteSize.Y*0.1)
  593. Sprint.Font = "SourceSans"
  594. Sprint.TextScaled = true
  595. Sprint.Text = "Sprint"
  596. Sprint.TextColor3 = Color3.new(1,1,1)
  597. Sprint.BackgroundTransparency = 1
  598. Sprint.TextXAlignment = "Left"
  599. local Sprint2 = Instance.new("TextLabel",F12)
  600. Sprint2.Name = "Sprint2"
  601. Sprint2.Position = UDim2.new(0,0,0,F12.AbsoluteSize.Y*0.4)
  602. Sprint2.Size = UDim2.new(0.2,0,0,F12.AbsoluteSize.Y*0.1)
  603. Sprint2.Font = "SourceSans"
  604. Sprint2.TextScaled = true
  605. Sprint2.Text = "No button set to sprint."
  606. Sprint2.TextColor3 = Color3.new(1,1,1)
  607. Sprint2.BackgroundTransparency = 1
  608. local Sprint2Change = Instance.new("TextButton",F12)
  609. Sprint2Change.Name = "Sprint2Change"
  610. Sprint2Change.BackgroundColor3 = Color3.fromRGB(45,45,45)
  611. Sprint2Change.BorderSizePixel = 0
  612. Sprint2Change.BorderMode = "Inset"
  613. Sprint2Change.Text = "Change"
  614. Sprint2Change.TextScaled = true
  615. Sprint2Change.Font = "SourceSans"
  616. Sprint2Change.Size = UDim2.new(0.15,0,0,F12.AbsoluteSize.Y*0.1)
  617. Sprint2Change.Position = UDim2.new(0.025,0,0,F12.AbsoluteSize.Y*0.5)
  618. Sprint2Change.TextColor3 = Color3.new(1,1,1)
  619. Sprint2Change.BorderColor3 = Color3.fromRGB(145,145,145)
  620. Sprint2Change.AutoButtonColor = false
  621. Sprint2Change.MouseEnter:Connect(function()
  622.     Sprint2Change.BorderSizePixel = 1
  623.     Sprint2Change.BackgroundColor3 = Color3.fromRGB(52,69,85)
  624. end)
  625. Sprint2Change.MouseLeave:Connect(function()
  626.     Sprint2Change.BorderSizePixel = 0
  627.     Sprint2Change.BorderColor3 = Color3.fromRGB(145,145,145)
  628.     Sprint2Change.BackgroundColor3 = Color3.fromRGB(45,45,45)
  629. end)
  630. Sprint2Change.MouseButton1Down:Connect(function()
  631.     Sprint2Change.BorderSizePixel = 1
  632.     Sprint2Change.BorderColor3 = Color3.fromRGB(26,87,149)
  633.     Sprint2Change.BackgroundColor3 = Color3.fromRGB(45,77,109)
  634. end)
  635. Sprint2Change.MouseButton1Up:Connect(function()
  636.     Sprint2Change.BorderSizePixel = 1
  637.     Sprint2Change.BorderColor3 = Color3.fromRGB(145,145,145)
  638.     Sprint2Change.BackgroundColor3 = Color3.fromRGB(52,69,85)
  639. end)
  640. Sprint2Change.MouseButton1Click:Connect(function()
  641.     F13Set = "sprint"
  642.     F13.F14.SetBindButton.Text = "Set bind"
  643.     F13.Visible = true
  644.     F13.Active = true
  645. end)
  646. local SprintWSLabel = Instance.new("TextLabel",F12)
  647. SprintWSLabel.Name = "SprintWSLabel"
  648. SprintWSLabel.Position = UDim2.new(0,0,0,F12.AbsoluteSize.Y*0.6)
  649. SprintWSLabel.Size = UDim2.new(0.1,0,0,F12.AbsoluteSize.Y*0.1)
  650. SprintWSLabel.Font = "SourceSans"
  651. SprintWSLabel.TextScaled = true
  652. SprintWSLabel.Text = "WalkSpeed:"
  653. SprintWSLabel.TextColor3 = Color3.new(1,1,1)
  654. SprintWSLabel.BackgroundTransparency = 1
  655. SprintWSLabel:GetPropertyChangedSignal("Text"):Connect(function()
  656.     Saves.Sprint.WalkSpeed = SprintWSLabel.Text
  657.     SaveFile()
  658. end)
  659. local SprintWS = Instance.new("TextBox",F12)
  660. SprintWS.Name = "SprintWS"
  661. SprintWS.Position = UDim2.new(0.1,0,0,F12.AbsoluteSize.Y*0.61)
  662. SprintWS.Size = UDim2.new(0.05,0,0,F12.AbsoluteSize.Y*0.08)
  663. SprintWS.BackgroundColor3 = Color3.fromRGB(45,45,45)
  664. SprintWS.BorderSizePixel = 0
  665. SprintWS.PlaceholderColor3 = Color3.fromRGB(90,90,90)
  666. SprintWS.Text = "60"
  667. SprintWS.TextScaled = true
  668. SprintWS.Font = "SourceSans"
  669. SprintWS.TextColor3 = Color3.new(1,1,1)
  670. SprintWS.TextScaled = true
  671. local BindEditFrame = Instance.new("ScrollingFrame",F12)
  672. BindEditFrame.Name = "BindEditFrame"
  673. BindEditFrame.MidImage = "rbxassetid://4933533316"
  674. BindEditFrame.TopImage = "rbxassetid://4933533316"
  675. BindEditFrame.BottomImage = "rbxassetid://4933533316"
  676. BindEditFrame.ScrollBarImageColor3 = Color3.fromRGB(45,45,45)
  677. BindEditFrame.Size = UDim2.new(0.4,0,0.8,0)
  678. BindEditFrame.Position = UDim2.new(0.6,0,0.1,0)
  679. BindEditFrame.BackgroundColor3 = Color3.fromRGB(60,60,60)
  680. BindEditFrame.BorderSizePixel = 0
  681. local BindEditFrameLayout = Instance.new("UIListLayout",BindEditFrame)
  682. BindEditFrameLayout.FillDirection = "Vertical"
  683. BindEditFrameLayout.Padding = UDim.new(0,5)
  684. BindEditFrameLayout.HorizontalAlignment = "Left"
  685. BindEditFrameLayout.SortOrder = "Name"
  686. BindEditFrameLayout.VerticalAlignment = "Top"
  687. local BindEditLabel = Instance.new("TextLabel",F12)
  688. BindEditLabel.Size = UDim2.new(0.4,0,0.1,0)
  689. BindEditLabel.Position = UDim2.new(0.6,0,0,0)
  690. BindEditLabel.TextColor3 = Color3.new(1,1,1)
  691. BindEditLabel.Font = "SourceSans"
  692. BindEditLabel.Name = "BindEditLabel"
  693. BindEditLabel.TextColor3 = Color3.new(1,1,1)
  694. BindEditLabel.TextSize = 20
  695. BindEditLabel.BackgroundTransparency = 1
  696. BindEditLabel.Text = "Edit Key Binds:"
  697. local BindAdd = Instance.new("TextButton",F12)
  698. BindAdd.Name = "BindAdd"
  699. BindAdd.BackgroundColor3 = Color3.fromRGB(45,45,45)
  700. BindAdd.BorderSizePixel = 0
  701. BindAdd.BorderMode = "Inset"
  702. BindAdd.Text = "Add Key Bind"  
  703. BindAdd.TextScaled = true
  704. BindAdd.Font = "SourceSans"
  705. BindAdd.Size = UDim2.new(0.3,0,0.1,0)
  706. BindAdd.Position = UDim2.new(0.65,0,0.9,0)
  707. BindAdd.TextColor3 = Color3.new(1,1,1)
  708. BindAdd.BorderColor3 = Color3.fromRGB(145,145,145)
  709. BindAdd.AutoButtonColor = false
  710. BindAdd.MouseEnter:Connect(function()
  711.     BindAdd.BorderSizePixel = 1
  712.     BindAdd.BackgroundColor3 = Color3.fromRGB(52,69,85)
  713. end)
  714. BindAdd.MouseLeave:Connect(function()
  715.     BindAdd.BorderSizePixel = 0
  716.     BindAdd.BorderColor3 = Color3.fromRGB(145,145,145)
  717.     BindAdd.BackgroundColor3 = Color3.fromRGB(45,45,45)
  718. end)
  719. BindAdd.MouseButton1Down:Connect(function()
  720.     BindAdd.BorderSizePixel = 1
  721.     BindAdd.BorderColor3 = Color3.fromRGB(26,87,149)
  722.     BindAdd.BackgroundColor3 = Color3.fromRGB(45,77,109)
  723. end)
  724. BindAdd.MouseButton1Up:Connect(function()
  725.     BindAdd.BorderSizePixel = 1
  726.     BindAdd.BorderColor3 = Color3.fromRGB(145,145,145)
  727.     BindAdd.BackgroundColor3 = Color3.fromRGB(52,69,85)
  728. end)
  729. BindAdd.MouseButton1Click:Connect(function()
  730.     CmdBindFrame.Visible = true
  731.     CmdBindFrame.Active = true
  732. end)
  733. function CreateBindLabel(bind,cmd,bindid,pos)
  734.     local Frame = Instance.new("Frame",BindEditFrame)
  735.     Frame.Name = "KeyFrame"
  736.     Frame.Size = UDim2.new(1,0,0,BindEditFrame.AbsoluteSize.Y*0.1)
  737.     Frame.Position = UDim2.new(0.3,0,0.3,0)
  738.     Frame.BackgroundColor3 = Color3.fromRGB(60,60,60)
  739.     Frame.BorderSizePixel = 0
  740.     local DelB = Instance.new("TextButton",Frame)
  741.     DelB.Name = "DelB"
  742.     DelB.BackgroundColor3 = Color3.fromRGB(45,45,45)
  743.     DelB.BorderSizePixel = 0
  744.     DelB.BorderMode = "Inset"
  745.     DelB.Text = "Delete"   
  746.     DelB.TextScaled = true
  747.     DelB.Font = "SourceSans"
  748.     DelB.Size = UDim2.new(0.2,0,1,0)
  749.     DelB.Position = UDim2.new(0.8,0,0,0)
  750.     DelB.TextColor3 = Color3.new(1,1,1)
  751.     DelB.BorderColor3 = Color3.fromRGB(145,145,145)
  752.     DelB.AutoButtonColor = false
  753.     DelB.MouseEnter:Connect(function()
  754.         DelB.BorderSizePixel = 1
  755.         DelB.BackgroundColor3 = Color3.fromRGB(52,69,85)
  756.     end)
  757.     DelB.MouseLeave:Connect(function()
  758.         DelB.BorderSizePixel = 0
  759.         DelB.BorderColor3 = Color3.fromRGB(145,145,145)
  760.         DelB.BackgroundColor3 = Color3.fromRGB(45,45,45)
  761.     end)
  762.     DelB.MouseButton1Down:Connect(function()
  763.         DelB.BorderSizePixel = 1
  764.         DelB.BorderColor3 = Color3.fromRGB(26,87,149)
  765.         DelB.BackgroundColor3 = Color3.fromRGB(45,77,109)
  766.     end)
  767.     DelB.MouseButton1Up:Connect(function()
  768.         DelB.BorderSizePixel = 1
  769.         DelB.BorderColor3 = Color3.fromRGB(145,145,145)
  770.         DelB.BackgroundColor3 = Color3.fromRGB(52,69,85)
  771.     end)
  772.     DelB.MouseButton1Click:Connect(function()
  773.         local lpos = 999
  774.         table.remove(Saves.CmdBinds,pos)
  775.         for i,v in pairs(Saves.CmdBinds) do
  776.             v.Pos = i
  777.         end
  778.         for i,v in pairs(BindEditFrame:GetChildren()) do
  779.             if v.ClassName == "Frame" then
  780.                 v:Destroy()
  781.             end
  782.         end
  783.         for i,v in pairs(Saves.CmdBinds) do
  784.             CreateBindLabel(v.Key,v.Cmd,v.Id,v.Pos)
  785.         end
  786.     end)
  787.     local Label = Instance.new("TextLabel",Frame)
  788.     Label.Size = UDim2.new(1,0,0,BindEditFrame.AbsoluteSize.Y*0.1)
  789.     Label.TextColor3 = Color3.new(1,1,1)
  790.     Label.Font = "SourceSans"
  791.     Label.Name = "Bind"..bindid
  792.     Label.TextColor3 = Color3.new(1,1,1)
  793.     Label.TextXAlignment = "Left"
  794.     Label.TextSize = 15
  795.     Label.BackgroundTransparency = 1
  796.     Label.Text = string.sub(bind,14).." - "..cmd
  797.     local Id = Instance.new("StringValue",Frame)
  798.     Id.Name = "Id"
  799.     Id.Value = bindid
  800.     BindEditFrame.CanvasSize = UDim2.new(0,BindEditFrameLayout.AbsoluteContentSize.X,0,BindEditFrameLayout.AbsoluteContentSize.Y)
  801. end
  802. function CreateBinds()
  803.     for i,v in pairs(BindEditFrame:GetChildren()) do
  804.         if v.ClassName == "Frame" then
  805.             v:Destroy()
  806.         end
  807.     end
  808.     for i,v in pairs(Saves.CmdBinds) do
  809.         CreateBindLabel(v.Key,v.Cmd,v.Id,v.Pos)
  810.     end
  811. end
  812. CreateBinds()
  813. local F6Ar = CreateMainScrollFrame("ScriptButtons",false)
  814. local F6 = F6Ar[1]
  815. local F6Layout = F6Ar[2]
  816. local F7Ar = CreateMainScrollFrame("PrisonButtons",false)
  817. local F7 = F7Ar[1]
  818. local F7Layout = F7Ar[2]
  819. local F8Ar = CreateMainScrollFrame("DaHoodButtons",false)
  820. local F8 = F8Ar[1]
  821. local F8Layout = F8Ar[2]
  822. local F9Ar = CreateMainScrollFrame("Animations",false)
  823. local F9 = F9Ar[1]
  824. local F9Layout = F9Ar[2]
  825. local F10Ar = CreateMainScrollFrame("JayAdmin",false)
  826. local F10 = F10Ar[1]
  827. local F10Layout = F10Ar[2]
  828. local F11 = Instance.new("ScrollingFrame",F2)
  829. F11.Name = "GameSideBar"
  830. F11.MidImage = "rbxassetid://4933533316"
  831. F11.TopImage = "rbxassetid://4933533316"
  832. F11.BottomImage = "rbxassetid://4933533316"
  833. F11.ScrollBarImageColor3 = Color3.fromRGB(45,45,45)
  834. F11.Size = UDim2.new(0.15,0,0.825,0)
  835. F11.Position = UDim2.new(0.025,0,0.025,0)
  836. F11.BackgroundColor3 = Color3.fromRGB(60,60,60)
  837. F11.BorderSizePixel = 0
  838. local F11Layout = Instance.new("UIListLayout",F11)
  839. F11Layout.FillDirection = "Vertical"
  840. F11Layout.Padding = UDim.new(0.005,0)
  841. F11Layout.HorizontalAlignment = "Left"
  842. F11Layout.VerticalAlignment = "Top"
  843. local F13Logo = Instance.new("ImageLabel",F13)
  844. F13Logo.Name = "ErigLogo"
  845. F13Logo.Image = "rbxassetid://5028412551"
  846. F13Logo.Size = UDim2.new(0,35,0,30)
  847. F13Logo.BackgroundTransparency = 1
  848. local F13Tittle = Instance.new("TextLabel",F13)
  849. F13Tittle.Size = UDim2.new(0.2,0,0,30)
  850. F13Tittle.Position = UDim2.new(0.4,0,0,0)
  851. F13Tittle.TextColor3 = Color3.new(1,1,1)
  852. F13Tittle.Font = "SourceSans"
  853. F13Tittle.Name = "Tittle"
  854. F13Tittle.TextSize = 18
  855. F13Tittle.BackgroundTransparency = 1
  856. F13Tittle.Text = "Keybindings"
  857. local F13ExitButton = Instance.new("TextButton",F13)
  858. F13ExitButton.Size = UDim2.new(0,22,0,22)
  859. F13ExitButton.Position = UDim2.new(1,-22,0,0)
  860. F13ExitButton.BackgroundTransparency = 1
  861. F13ExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  862. F13ExitButton.BorderSizePixel = 1
  863. F13ExitButton.Name = "F13ExitButton"
  864. F13ExitButton.BorderMode = "Inset"
  865. F13ExitButton.Text = "X"
  866. F13ExitButton.TextSize = 15
  867. F13ExitButton.Font = "SourceSansSemibold"
  868. F13ExitButton.TextColor3 = Color3.new(1,1,1)
  869. F13ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
  870. F13ExitButton.AutoButtonColor = false
  871. F13ExitButton.MouseEnter:Connect(function()
  872.     F13ExitButton.BackgroundTransparency = 0
  873. end)
  874. F13ExitButton.MouseLeave:Connect(function()
  875.     F13ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
  876.     F13ExitButton.BackgroundTransparency = 1
  877. end)
  878. F13ExitButton.MouseButton1Down:Connect(function()
  879.     F13ExitButton.BorderColor3 = Color3.fromRGB(26,87,149)
  880.     F13ExitButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
  881. end)
  882. F13ExitButton.MouseButton1Up:Connect(function()
  883.     F13ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
  884.     F13ExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  885. end)
  886. F13ExitButton.MouseButton1Click:Connect(function()
  887.     F13.Visible = false
  888.     F13.Active = false
  889. end)
  890. local F14 = Instance.new("Frame",F13)
  891. F14.Name = "F14"
  892. F14.Size = UDim2.new(0,MainGui.AbsoluteSize.X*0.2,0,MainGui.AbsoluteSize.Y*0.2)
  893. F14.Position = UDim2.new(0,0,1,0)
  894. F14.BackgroundColor3 = Color3.fromRGB(51,51,51)
  895. F14.BorderSizePixel = 0
  896. local SetBindButton = Instance.new("TextButton",F14)
  897. SetBindButton.Name = "SetBindButton"
  898. SetBindButton.Size = UDim2.new(0.4,0,0.6,0)
  899. SetBindButton.Position = UDim2.new(0.5,0,0.2,0)
  900. SetBindButton.BackgroundTransparency = 0
  901. SetBindButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
  902. SetBindButton.BorderSizePixel = 0
  903. SetBindButton.BorderMode = "Inset"
  904. SetBindButton.Text = "Set Keybind"
  905. SetBindButton.TextScaled = true
  906. SetBindButton.Font = "SourceSans"
  907. SetBindButton.TextColor3 = Color3.new(1,1,1)
  908. SetBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
  909. SetBindButton.AutoButtonColor = false
  910. SetBindButton.MouseEnter:Connect(function()
  911.     SetBindButton.BorderSizePixel = 1
  912.     SetBindButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  913. end)
  914. SetBindButton.MouseLeave:Connect(function()
  915.     SetBindButton.BorderSizePixel = 0
  916.     SetBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
  917.     SetBindButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
  918. end)
  919. SetBindButton.MouseButton1Down:Connect(function()
  920.     SetBindButton.BorderSizePixel = 1
  921.     SetBindButton.BorderColor3 = Color3.fromRGB(26,87,149)
  922.     SetBindButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
  923. end)
  924. SetBindButton.MouseButton1Up:Connect(function()
  925.     SetBindButton.BorderSizePixel = 1
  926.     SetBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
  927.     SetBindButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  928. end)
  929. SetBindButton.MouseButton1Click:Connect(function()
  930.     wait(0.05)
  931.     SetBindActive = true
  932. end)
  933. local CmdBindActive = false
  934. local CurrentCmdBind = "Enum.KeyCode.End"
  935. CmdBindFrame.Name = "CmdBindFrame"
  936. CmdBindFrame.Size = UDim2.new(0,MainGui.AbsoluteSize.X*0.2,0.0,30)
  937. CmdBindFrame.Position = UDim2.new(0.3,0,0.3,0)
  938. CmdBindFrame.BackgroundColor3 = Color3.fromRGB(60,60,60)
  939. CmdBindFrame.BorderSizePixel = 0
  940. CmdBindFrame.Visible = false
  941. CmdBindFrame.Selectable = true
  942. CmdBindFrame.Draggable = true
  943. local CmdBindLogo = Instance.new("ImageLabel",CmdBindFrame)
  944. CmdBindLogo.Name = "ErigLogo"
  945. CmdBindLogo.Image = "rbxassetid://5028412551"
  946. CmdBindLogo.Size = UDim2.new(0,35,0,30)
  947. CmdBindLogo.BackgroundTransparency = 1
  948. local CmdBindTittle = Instance.new("TextLabel",CmdBindFrame)
  949. CmdBindTittle.Size = UDim2.new(0.2,0,0,30)
  950. CmdBindTittle.Position = UDim2.new(0.4,0,0,0)
  951. CmdBindTittle.TextColor3 = Color3.new(1,1,1)
  952. CmdBindTittle.Font = "SourceSans"
  953. CmdBindTittle.Name = "Tittle"
  954. CmdBindTittle.TextSize = 18
  955. CmdBindTittle.BackgroundTransparency = 1
  956. CmdBindTittle.Text = "Keybindings"
  957. local CmdBindExit = Instance.new("TextButton",CmdBindFrame)
  958. CmdBindExit.Size = UDim2.new(0,22,0,22)
  959. CmdBindExit.Position = UDim2.new(1,-22,0,0)
  960. CmdBindExit.BackgroundTransparency = 1
  961. CmdBindExit.BackgroundColor3 = Color3.fromRGB(52,69,85)
  962. CmdBindExit.BorderSizePixel = 1
  963. CmdBindExit.Name = "CmdBindExit"
  964. CmdBindExit.BorderMode = "Inset"
  965. CmdBindExit.Text = "X"
  966. CmdBindExit.TextSize = 15
  967. CmdBindExit.Font = "SourceSansSemibold"
  968. CmdBindExit.TextColor3 = Color3.new(1,1,1)
  969. CmdBindExit.BorderColor3 = Color3.fromRGB(145,145,145)
  970. CmdBindExit.AutoButtonColor = false
  971. CmdBindExit.MouseEnter:Connect(function()
  972.     CmdBindExit.BackgroundTransparency = 0
  973. end)
  974. CmdBindExit.MouseLeave:Connect(function()
  975.     CmdBindExit.BorderColor3 = Color3.fromRGB(145,145,145)
  976.     CmdBindExit.BackgroundTransparency = 1
  977. end)
  978. CmdBindExit.MouseButton1Down:Connect(function()
  979.     CmdBindExit.BorderColor3 = Color3.fromRGB(26,87,149)
  980.     CmdBindExit.BackgroundColor3 = Color3.fromRGB(45,77,109)
  981. end)
  982. CmdBindExit.MouseButton1Up:Connect(function()
  983.     CmdBindExit.BorderColor3 = Color3.fromRGB(145,145,145)
  984.     CmdBindExit.BackgroundColor3 = Color3.fromRGB(52,69,85)
  985. end)
  986. CmdBindExit.MouseButton1Click:Connect(function()
  987.     CmdBindFrame.Visible = false
  988.     CmdBindFrame.Active = false
  989. end)
  990. local CmdBindFrame2 = Instance.new("Frame",CmdBindFrame)
  991. CmdBindFrame2.Name = "CmdBindFrame2"
  992. CmdBindFrame2.Size = UDim2.new(0,MainGui.AbsoluteSize.X*0.2,0,MainGui.AbsoluteSize.Y*0.2)
  993. CmdBindFrame2.Position = UDim2.new(0,0,1,0)
  994. CmdBindFrame2.BackgroundColor3 = Color3.fromRGB(51,51,51)
  995. CmdBindFrame2.BorderSizePixel = 0
  996. local CmdBindButton = Instance.new("TextButton",CmdBindFrame2)
  997. CmdBindButton.Name = "CmdBindButton"
  998. CmdBindButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
  999. CmdBindButton.BorderSizePixel = 0
  1000. CmdBindButton.BorderMode = "Inset"
  1001. CmdBindButton.Text = "Set Bind"
  1002. CmdBindButton.TextSize = 20
  1003. CmdBindButton.TextWrapped = true
  1004. CmdBindButton.Font = "SourceSans"
  1005. CmdBindButton.TextColor3 = Color3.new(1,1,1)
  1006. CmdBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
  1007. CmdBindButton.AutoButtonColor = false
  1008. CmdBindButton.Size = UDim2.new(0.3,0,0.4,0)
  1009. CmdBindButton.Position = UDim2.new(0.1,0,0.05,0)
  1010. CmdBindButton.MouseEnter:Connect(function()
  1011.     CmdBindButton.BorderSizePixel = 1
  1012.     CmdBindButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  1013. end)
  1014. CmdBindButton.MouseLeave:Connect(function()
  1015.     CmdBindButton.BorderSizePixel = 0
  1016.     CmdBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
  1017.     CmdBindButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
  1018. end)
  1019. CmdBindButton.MouseButton1Down:Connect(function()
  1020.     CmdBindButton.BorderSizePixel = 1
  1021.     CmdBindButton.BorderColor3 = Color3.fromRGB(26,87,149)
  1022.     CmdBindButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
  1023. end)
  1024. CmdBindButton.MouseButton1Up:Connect(function()
  1025.     CmdBindButton.BorderSizePixel = 1
  1026.     CmdBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
  1027.     CmdBindButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  1028. end)
  1029. CmdBindButton.MouseButton1Click:Connect(function()
  1030.     wait(0.05)
  1031.     CmdBindActive = true
  1032. end)
  1033. local CmdBindLabel = Instance.new("TextLabel",CmdBindFrame2)
  1034. CmdBindLabel.Size = UDim2.new(0.3,0,0.4,0)
  1035. CmdBindLabel.Position = UDim2.new(0.1,0,0.55,0)
  1036. CmdBindLabel.TextColor3 = Color3.new(1,1,1)
  1037. CmdBindLabel.Font = "SourceSans"
  1038. CmdBindLabel.Name = "CmdBindLabel"
  1039. CmdBindLabel.TextSize = 20
  1040. CmdBindLabel.TextScaled = true
  1041. CmdBindLabel.BackgroundTransparency = 1
  1042. CmdBindLabel.Text = "Click the button then type the command you want to bind."
  1043. local CmdBindBox = Instance.new("TextBox",CmdBindFrame2)
  1044. CmdBindBox.Name = "CmdBindBox"
  1045. CmdBindBox.Position = UDim2.new(0.55,0,0.15,0)
  1046. CmdBindBox.Size = UDim2.new(0.4,0,0.15,0)
  1047. CmdBindBox.BackgroundColor3 = Color3.fromRGB(45,45,45)
  1048. CmdBindBox.BorderSizePixel = 0
  1049. CmdBindBox.PlaceholderColor3 = Color3.fromRGB(90,90,90)
  1050. CmdBindBox.Text = ""
  1051. CmdBindBox.PlaceholderText = "Command"
  1052. CmdBindBox.TextScaled = true
  1053. CmdBindBox.Font = "SourceSans"
  1054. CmdBindBox.TextColor3 = Color3.new(1,1,1)
  1055. CmdBindBox.TextScaled = true
  1056. local CmdEnterButton = Instance.new("TextButton",CmdBindFrame2)
  1057. CmdEnterButton.Name = "CmdEnterButton"
  1058. CmdEnterButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
  1059. CmdEnterButton.BorderSizePixel = 0
  1060. CmdEnterButton.BorderMode = "Inset"
  1061. CmdEnterButton.Text = "Enter"
  1062. CmdEnterButton.TextSize = 20
  1063. CmdEnterButton.TextWrapped = true
  1064. CmdEnterButton.Font = "SourceSans"
  1065. CmdEnterButton.TextColor3 = Color3.new(1,1,1)
  1066. CmdEnterButton.BorderColor3 = Color3.fromRGB(145,145,145)
  1067. CmdEnterButton.AutoButtonColor = false
  1068. CmdEnterButton.Size = UDim2.new(0.2,0,0.15,0)
  1069. CmdEnterButton.Position = UDim2.new(0.65,0,0.3,0)
  1070. CmdEnterButton.MouseEnter:Connect(function()
  1071.     CmdEnterButton.BorderSizePixel = 1
  1072.     CmdEnterButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  1073. end)
  1074. CmdEnterButton.MouseLeave:Connect(function()
  1075.     CmdEnterButton.BorderSizePixel = 0
  1076.     CmdEnterButton.BorderColor3 = Color3.fromRGB(145,145,145)
  1077.     CmdEnterButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
  1078. end)
  1079. CmdEnterButton.MouseButton1Down:Connect(function()
  1080.     CmdEnterButton.BorderSizePixel = 1
  1081.     CmdEnterButton.BorderColor3 = Color3.fromRGB(26,87,149)
  1082.     CmdEnterButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
  1083. end)
  1084. CmdEnterButton.MouseButton1Up:Connect(function()
  1085.     CmdEnterButton.BorderSizePixel = 1
  1086.     CmdEnterButton.BorderColor3 = Color3.fromRGB(145,145,145)
  1087.     CmdEnterButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
  1088. end)
  1089. CmdEnterButton.MouseButton1Click:Connect(function()
  1090.     table.insert(Saves.CmdBinds,#Saves.CmdBinds+1,{Cmd = CmdBindBox.Text, Key = CurrentCmdBind, Id = StringGen(6,true,true,true), Pos = #Saves.CmdBinds+1})
  1091.     SaveFile()
  1092.     CreateBinds()
  1093. end)
  1094. --Commands
  1095. --Find Players
  1096. function FindPlr (FName)
  1097.     local TFN = #FName
  1098.     for i, v in pairs(game.Players:GetChildren()) do
  1099.         local CNC = string.lower(v.Name)
  1100.         if string.sub(CNC,1,TFN) == FName then
  1101.          return v
  1102.         end
  1103.     end
  1104. end
  1105. --fly
  1106. local flying = false
  1107. local deb = true
  1108. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  1109. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  1110. local acceleration = 1
  1111. local maxspeed = acceleration*50
  1112. local speed = 0
  1113. function Fly()
  1114. local torso = plr.Character.Head
  1115. local bg = Instance.new("BodyGyro", torso)
  1116. bg.P = 9e4
  1117. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1118. bg.cframe = torso.CFrame
  1119. local bv = Instance.new("BodyVelocity", torso)
  1120. bv.velocity = Vector3.new(0,0.1,0)
  1121. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1122. repeat wait()
  1123. plr.Character.Humanoid.PlatformStand = true
  1124. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  1125. speed = speed +acceleration+(speed/maxspeed)
  1126. if speed > maxspeed then
  1127. speed = maxspeed
  1128. end
  1129. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  1130. speed = 0
  1131. if speed < 0 then
  1132. speed = 0
  1133. end
  1134. end
  1135. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  1136. 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
  1137. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  1138. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  1139. 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
  1140. else
  1141. bv.velocity = Vector3.new(0,0.1,0)
  1142. end
  1143. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  1144. until not flying
  1145. ctrl = {f = 0, b = 0, l = 0, r = 0}
  1146. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  1147. speed = 0
  1148. bg:Destroy()
  1149. bv:Destroy()
  1150. plr.Character.Humanoid.PlatformStand = false
  1151. end
  1152. mouse.KeyDown:connect(function(key)
  1153. if key:lower() == "w" then
  1154. ctrl.f = 1
  1155. elseif key:lower() == "s" then
  1156. ctrl.b = -1
  1157. elseif key:lower() == "a" then
  1158. ctrl.l = -1
  1159. elseif key:lower() == "d" then
  1160. ctrl.r = 1
  1161. end
  1162. end)
  1163. mouse.KeyUp:connect(function(key)
  1164. if key:lower() == "w" then
  1165. ctrl.f = 0
  1166. elseif key:lower() == "s" then
  1167. ctrl.b = 0
  1168. elseif key:lower() == "a" then
  1169. ctrl.l = 0
  1170. elseif key:lower() == "d" then
  1171. ctrl.r = 0
  1172. end
  1173. end)
  1174. --Noclip
  1175. local Clip = true
  1176. local NoclipLoop = function()
  1177. for i, v in pairs(plr.Character:GetDescendants()) do
  1178.                 if Clip == false and on then
  1179.                     if v:IsA("BasePart") and v.CanCollide == true then
  1180.                         v.CanCollide = false
  1181.                 end
  1182.                 elseif Clip == true and on then
  1183.                     if v:IsA("BasePart") and v.CanCollide == false then
  1184.                         v.CanCollide = true
  1185.             end
  1186.         end
  1187.     end
  1188. end
  1189. Noclipping = game:GetService('RunService').Stepped:Connect(NoclipLoop)
  1190. F6.CanvasSize = UDim2.new(0,F6Layout.AbsoluteContentSize.X,0,F6Layout.AbsoluteContentSize.Y)
  1191. local JayBarDeb = false
  1192. mouse.KeyDown:Connect(function(input)
  1193.     if input == Saves.JayPrefix then
  1194.         F1:TweenPosition(UDim2.new(0,0,0,MainGui.AbsoluteSize.Y*0.7),"Out","Linear",0.25,true)
  1195.         wait(0.1)
  1196.         JayBar:CaptureFocus()
  1197.     end
  1198. end)
  1199. local spam = false
  1200. function ExecuteCmd(cmdstring)
  1201.     local jtex = string.lower(cmdstring)
  1202.     if JayBarDeb == false then
  1203.         wait(0.1)
  1204.         JayBarDeb = true
  1205.         if string.sub(jtex,1,3) == "fly" then
  1206.             JayBarDeb = false
  1207.             flying = true
  1208.             Fly()
  1209.         elseif string.sub(jtex,1,5) == "unfly" then
  1210.             JayBarDeb = false
  1211.             flying = false
  1212.             Notify("flying disabled.",20," ",22,2)
  1213.         elseif string.sub(jtex,1,7) == "fspeed " then
  1214.             JayBarDeb = false
  1215.             acceleration = string.sub(jtex,8)
  1216.             maxspeed = acceleration*50
  1217.             Notify("Fly speed changed to "..acceleration,20," ",22,2)
  1218.         elseif string.sub(jtex,1,3) == "fs " then
  1219.             JayBarDeb = false
  1220.             acceleration = string.sub(jtex,4)
  1221.             maxspeed = acceleration*50
  1222.             Notify("Fly speed changed to "..acceleration,20," ",22,2)
  1223.         elseif string.sub(jtex,1,6) == "noclip" then
  1224.             JayBarDeb = false
  1225.             Clip = false
  1226.             Notify("noclip enabled.",20," ",22,2)
  1227.         elseif string.sub(jtex,1,4) == "clip" then
  1228.             JayBarDeb = false
  1229.             Clip = true
  1230.             Notify("noclip disabled.",20," ",22,2)
  1231.         elseif string.sub(jtex,1,5) == "goto " then
  1232.             JayBarDeb = false
  1233.             local Splr = FindPlr(string.sub(jtex,6))
  1234.             plr.Character.Humanoid.Jump = true
  1235.             plr.Character:SetPrimaryPartCFrame(Splr.Character.PrimaryPart.CFrame +Vector3.new(3,2,0))
  1236.             Notify("Teleported to "..Splr.Name,20," ",22,2)
  1237.         elseif string.sub(jtex,1,3) == "tp " then
  1238.             JayBarDeb = false
  1239.             local Splr = FindPlr(string.sub(jtex,4))
  1240.             plr.Character.Humanoid.Jump = true
  1241.             plr.Character:SetPrimaryPartCFrame(Splr.Character.PrimaryPart.CFrame +Vector3.new(3,2,0))
  1242.             Notify("Teleported to "..Splr.Name,20," ",22,2)
  1243.         elseif string.sub(jtex,1,4) == "nude" or string.sub(jtex,1,5) == "naked" then
  1244.             JayBarDeb = false
  1245.             local Pants = plr.Character:FindFirstChildWhichIsA("Pants")
  1246.             if Pants == nil then
  1247.                 else
  1248.             Pants:Destroy()    
  1249.             end
  1250.             local Shirt = plr.Character:FindFirstChildWhichIsA("Shirt")
  1251.             if Shirt == nil then
  1252.                 else
  1253.             Shirt:Destroy()    
  1254.             end
  1255.             Notify("Removed clothing.",20," ",22,2)
  1256.         elseif string.sub(jtex,1,14) == "disableprompts" then
  1257.             JayBarDeb = false
  1258.             CoreGui.PurchasePromptApp:Destroy()
  1259.             Notify("Removed purchase prompts.",20," ",22,2)
  1260.         elseif string.sub(jtex,1,3) == "jp " then
  1261.             JayBarDeb = false
  1262.             plr.Character.Humanoid.JumpPower = (string.sub(jtex, 4))
  1263.             Notify("JumpPower is "..string.sub(jtex, 4),20," ",22,2)
  1264.         elseif string.sub(jtex,1,10) == "jumppower " then
  1265.             JayBarDeb = false
  1266.             plr.Character.Humanoid.JumpPower = (string.sub(jtex, 11))
  1267.             Notify("JumpPower is "..string.sub(jtex, 11),20," ",22,2)
  1268.         elseif string.sub(jtex,1,6) == "speed " then
  1269.             JayBarDeb = false
  1270.             plr.Character.Humanoid.WalkSpeed = (string.sub(jtex, 7))
  1271.             Notify("WalkSpeed is "..string.sub(jtex, 7),20," ",22,2)
  1272.         elseif string.sub(jtex,1,10) == "walkspeed " then
  1273.             JayBarDeb = false
  1274.             plr.Character.Humanoid.WalkSpeed = (string.sub(jtex, 11))
  1275.             Notify("WalkSpeed is "..string.sub(jtex, 11),20," ",22,2)
  1276.         elseif string.sub(jtex,1,3) == "ws " then
  1277.             JayBarDeb = false
  1278.             plr.Character.Humanoid.WalkSpeed = (string.sub(jtex, 4))
  1279.             Notify("WalkSpeed is "..string.sub(jtex, 4),20," ",22,2)
  1280.         elseif string.sub(jtex,1,3) == "dex" or string.sub(jtex,1,8) == "explorer"then
  1281.             JayBarDeb = false
  1282.             loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
  1283.         elseif string.sub(jtex,1,5) == "spam " then
  1284.             JayBarDeb = false
  1285.             spam = true
  1286.             repeat game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(string.sub(cmdstring,6), "All") wait(2) until
  1287.             spam == false
  1288.         elseif string.sub(jtex,1,6) == "unspam" then
  1289.             JayBarDeb = false
  1290.             spam = false
  1291.         elseif string.sub(jtex,1,5) == "chat " then
  1292.             JayBarDeb = false
  1293.             game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(string.sub(cmdstring,6), "All")
  1294.         elseif string.sub(jtex,1,2) == "rj" or string.sub(jtex,1,6) == "rejoin" then
  1295.             JayBarDeb = false
  1296.             game:GetService('TeleportService'):Teleport(game.PlaceId)
  1297.             Notify("Rejoining your game, please wait.",20,"Rejoining",22,2)
  1298.         elseif string.sub(jtex,1,8) == "antiidle" or string.sub(jtex,1,7) == "antiafk" then
  1299.             JayBarDeb = false
  1300.             pcall(function()
  1301.                 for i,v in pairs(getconnections(plr.Idled)) do
  1302.                 v:Disable()
  1303.                 end
  1304.             end)
  1305.             Notify("Antiafk enabled, credits to Infinite Yelds.",20,"Antiafk Enabled",22,2)
  1306.         elseif string.sub(jtex,1,8) == "execute " then
  1307.             JayBarDeb = false
  1308.             loadstring(string.sub(cmdstring,9))()
  1309.             Notify("Executed Code.",20,"Executed",22,2)
  1310.         elseif string.sub(jtex,1,5) == "exec " then
  1311.             JayBarDeb = false
  1312.             loadstring(string.sub(cmdstring,6))()
  1313.             Notify("Executed Code.",20,"Executed",22,2)
  1314.         elseif string.sub(jtex,1,7) == "creeper" or string.sub(jtex,1,5) == "creep" then
  1315.             JayBarDeb = false
  1316.             if plr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  1317.                 plr.Character.Head:FindFirstChildOfClass("SpecialMesh"):Destroy()
  1318.                 plr.Character.LeftUpperArm:Destroy()
  1319.                 plr.Character.RightUpperArm:Destroy()
  1320.                 for i,v in pairs(plr.Character.Humanoid:GetAccessories()) do
  1321.                     v:Destroy()
  1322.                 end
  1323.             else
  1324.                 plr.Character.Head:FindFirstChildOfClass("SpecialMesh"):Destroy()
  1325.                 plr.Character["Left Arm"]:Destroy()
  1326.                 plr.Character["Right Arm"]:Destroy()
  1327.                 for i,v in pairs(plr.Character.Humanoid:GetAccessories()) do
  1328.                     v:Destroy()
  1329.                 end
  1330.             end
  1331.             Notify("You're now a creeper.",20," ",22,2)
  1332.         elseif string.sub(jtex,1,10) == "removefade" then
  1333.                 JayBarDeb = false
  1334.                 if game.PlaceId == 155615604 then
  1335.                     plr.PlayerGui.Home.fadeFrame:Destroy()
  1336.                 end
  1337.                 Notify("Fade frame removed.",20," ",22,2)
  1338.         elseif string.sub(jtex,1,5) == "view " then
  1339.             JayBarDeb = false
  1340.             local Splr = FindPlr(string.sub(jtex,6))
  1341.             workspace.CurrentCamera.CameraSubject = Splr.Character
  1342.             Notify("Viewing "..Splr.Name,20," ",22,2)
  1343.         elseif string.sub(jtex,1,6) == "unview" then
  1344.             JayBarDeb = false
  1345.             workspace.CurrentCamera.CameraSubject = plr.Character
  1346.             Notify("Unviewed.",20," ",22,2)
  1347.         elseif string.sub(jtex,1,3) == "sit" then
  1348.             JayBarDeb = false
  1349.             plr.Character.Humanoid.Sit = true
  1350.             Notify("You're sitting.",20," ",22,2)
  1351.         elseif string.sub(jtex,1,5) == "unsit" then
  1352.             JayBarDeb = false
  1353.             plr.Character.Humanoid.Sit = false
  1354.             Notify("You're not sitting.",20," ",22,2)
  1355.         elseif string.sub(jtex,1,8) == "maxzoom " then
  1356.             JayBarDeb = false
  1357.             plr.CameraMaxZoomDistance = string.sub(jtex,9)
  1358.         elseif string.sub(jtex,1,3) == "mz " then
  1359.             JayBarDeb = false
  1360.             plr.CameraMaxZoomDistance = string.sub(jtex,4)
  1361.         elseif string.sub(jtex,1,17) == "unlockfirstperson" or string.sub(jtex,1,9) == "uncamlock" then
  1362.             JayBarDeb = false
  1363.             plr.CameraMode = Enum.CameraMode.Classic
  1364.             Notify("Unlocked first person.",20," ",22,2)
  1365.         elseif string.sub(jtex,1,11) == "firstperson" or string.sub(jtex,1,7) == "camlock" then
  1366.             JayBarDeb = false
  1367.             plr.CameraMode = Enum.CameraMode.LockFirstPerson
  1368.             Notify("First person enabled.",20," ",22,2)
  1369.         elseif string.sub(jtex,1,4) == "save" or string.sub(jtex,1,8) == "savefile" then
  1370.             JayBarDeb = false
  1371.             SaveFile()
  1372.             Notify("Saved.",20," ",22,2)
  1373.         elseif string.sub(jtex,1,5) == "reset" then
  1374.             JayBarDeb = false
  1375.             plr.Character.Humanoid.Health = 0
  1376.         elseif string.sub(jtex,1,7) == "refresh" then
  1377.             JayBarDeb = false
  1378.             local curpos = plr.Character.PrimaryPart.Position
  1379.             plr.Character.Humanoid.Health = 0
  1380.             plr.Character:BreakJoints()
  1381.             for i,v in pairs(plr.Character:GetChildren()) do
  1382.                 if v:IsA("BasePart") then
  1383.                     v:Destroy()
  1384.                 end
  1385.             end
  1386.             repeat wait() until plr.Character ~= nil and plr.Character:FindFirstChild('HumanoidRootPart')
  1387.             wait(0.1)
  1388.             plr.Character:MoveTo(curpos)
  1389.         elseif string.sub(jtex,1,7) == "destroy" or string.sub(jtex,1,6) == "remove" then
  1390.             JayBarDeb = false
  1391.             SaveFile()
  1392.             wait(0.1)
  1393.             MainGui:Destroy()
  1394.             on = false
  1395.             script:Destroy()
  1396.             end
  1397.         JayBarDeb = false
  1398.         JayBar.Text = ""
  1399.         else
  1400.         print("no")
  1401.     end
  1402. end
  1403. uis.InputBegan:Connect(function(input)
  1404.     if on then
  1405.         local tempkey = tostring(input.KeyCode)
  1406.         local stringtemp = string.split(tempkey,".")[3]
  1407.         if CmdBindActive then
  1408.             CmdBindButton.Text = stringtemp
  1409.             CurrentCmdBind = tempkey
  1410.             CmdBindActive = false
  1411.         end
  1412.         if SetBindActive then
  1413.             if F13Set == "tp" then
  1414.                 Saves.ClickToTeleport.Key = tempkey
  1415.                 Saves.ClickToTeleport.Abreviation = stringtemp
  1416.                 C2TP2.Text = "Button set to teleport is "..stringtemp
  1417.                 SetBindButton.Text = stringtemp
  1418.                 SetBindActive = false
  1419.                 SaveFile()
  1420.             elseif F13Set == "sprint" then
  1421.                 Saves.Sprint.Key = tempkey
  1422.                 Saves.Sprint.Abreviation = stringtemp
  1423.                 Sprint2.Text = "Button set to sprint is "..stringtemp
  1424.                 SetBindButton.Text = stringtemp
  1425.                 SetBindActive = false
  1426.                 SaveFile()
  1427.             end
  1428.         end
  1429.         if Saves.Sprint.Key ~= nil then
  1430.             if input.KeyCode == Enum.KeyCode[string.sub(Saves.Sprint.Key,14)] and Saves.Sprint.Toggle then
  1431.                 pcall(function()
  1432.                     plr.Character.Humanoid.WalkSpeed = SprintWS.Text
  1433.                 end)
  1434.             end
  1435.         end
  1436.         for i,v in pairs(Saves.CmdBinds) do
  1437.             if v.Key == tempkey then
  1438.                 ExecuteCmd(v.Cmd)
  1439.             end
  1440.         end
  1441.     end
  1442. end)
  1443. uis.InputEnded:Connect(function(input)
  1444.     if Saves.Sprint.Key ~= nil then
  1445.         if input.KeyCode == Enum.KeyCode[string.sub(Saves.Sprint.Key,14)] and Saves.Sprint.Toggle then
  1446.             plr.Character.Humanoid.WalkSpeed = 16
  1447.         end
  1448.     end
  1449. end)
  1450. mouse.Button1Down:Connect(function()
  1451.     if Saves.ClickToTeleport.Key ~= nil then
  1452.          if Saves.ClickToTeleport.Toggle and on then
  1453.             if uis:IsKeyDown(Enum.KeyCode[string.sub(Saves.ClickToTeleport.Key,14)]) then
  1454.                 local char = plr.Character
  1455.                  char.PrimaryPart.CFrame = mouse.Hit + Vector3.new(0,8,0)
  1456.              end
  1457.         end
  1458.     end
  1459. end)
  1460. local SetBindLabel = Instance.new("TextLabel",F14)
  1461. SetBindLabel.Name = "SetBindButton"
  1462. SetBindLabel.Size = UDim2.new(0.4,0,0.6,0)
  1463. SetBindLabel.Position = UDim2.new(0.05,0,0.2,0)
  1464. SetBindLabel.BackgroundTransparency = 1
  1465. SetBindLabel.BorderMode = "Inset"
  1466. SetBindLabel.Text = "Click the button to the right then the button you want to bind."
  1467. SetBindLabel.TextScaled = true
  1468. SetBindLabel.Font = "SourceSans"
  1469. SetBindLabel.TextColor3 = Color3.new(1,1,1)
  1470. function CreateGameSideButton(name,text,size,wrapped)
  1471.     local Button = Instance.new("TextButton",F11)
  1472.     Button.Name = name
  1473.     Button.BackgroundColor3 = Color3.fromRGB(60,60,60)
  1474.     Button.BorderSizePixel = 0
  1475.     Button.BorderMode = "Inset"
  1476.     Button.Text = text
  1477.     Button.TextXAlignment = "Right"
  1478.     Button.TextSize = size
  1479.     Button.TextWrapped = wrapped
  1480.     Button.Font = "SourceSans"
  1481.     Button.TextColor3 = Color3.new(1,1,1)
  1482.     Button.BorderColor3 = Color3.fromRGB(145,145,145)
  1483.     Button.AutoButtonColor = false
  1484.     Button.Size = UDim2.new(0.95,0,0,F11.AbsoluteSize.Y*0.1)
  1485.     Button.MouseEnter:Connect(function()
  1486.         Button.BorderSizePixel = 1
  1487.         Button.BackgroundColor3 = Color3.fromRGB(52,69,85)
  1488.     end)
  1489.     Button.MouseLeave:Connect(function()
  1490.         Button.BorderSizePixel = 0
  1491.         Button.BorderColor3 = Color3.fromRGB(145,145,145)
  1492.         Button.BackgroundColor3 = Color3.fromRGB(60,60,60)
  1493.     end)
  1494.     Button.MouseButton1Down:Connect(function()
  1495.         Button.BorderSizePixel = 1
  1496.         Button.BorderColor3 = Color3.fromRGB(26,87,149)
  1497.         Button.BackgroundColor3 = Color3.fromRGB(45,77,109)
  1498.     end)
  1499.     Button.MouseButton1Up:Connect(function()
  1500.         Button.BorderSizePixel = 1
  1501.         Button.BorderColor3 = Color3.fromRGB(145,145,145)
  1502.         Button.BackgroundColor3 = Color3.fromRGB(52,69,85)
  1503.     end)
  1504.     if Button.TextFits == false then
  1505.         Button.TextWrapped = true
  1506.     end
  1507.     return Button
  1508. end
  1509. local F11B1 = CreateGameSideButton("6DHGUIsButton","Da Hood Scripts",15,false)
  1510. F11B1.MouseButton1Click:Connect(function()
  1511.     F6.Visible = false
  1512.     F6.Active = false
  1513.     F8.Visible = true
  1514.     F8.Active = true
  1515.     F7.Visible = false
  1516.     F7.Active = false
  1517.     F9.Visible = false
  1518.     F9.Active = false
  1519.     F12.Visible = false
  1520.     F12.Active = false
  1521. end)
  1522. local F11B2 = CreateGameSideButton("5PLRSButton","Prison Life & Redwood Scripts",15,false)
  1523. F11B2.MouseButton1Click:Connect(function()
  1524.     F6.Visible = false
  1525.     F6.Active = false
  1526.     F8.Visible = false
  1527.     F8.Active = false
  1528.     F7.Visible = true
  1529.     F7.Active = true
  1530.     F9.Visible = false
  1531.     F9.Active = false
  1532.     F12.Visible = false
  1533.     F12.Active = false
  1534. end)
  1535. local F11B3 = CreateGameSideButton("2ScrpitsButton","Scrpits",15,false)
  1536. F11B3.MouseButton1Click:Connect(function()
  1537.     F6.Visible = true
  1538.     F6.Active = true
  1539.     F7.Visible = false
  1540.     F7.Active = false
  1541.     F8.Visible = false
  1542.     F8.Active = false
  1543.     F9.Visible = false
  1544.     F9.Active = false
  1545.     F12.Visible = false
  1546.     F12.Active = false
  1547. end)
  1548. local F11B4 = CreateGameSideButton("3AnimsButton","Animations",15,false)
  1549. F11B4.MouseButton1Click:Connect(function()
  1550.     F6.Visible = false
  1551.     F6.Active = false
  1552.     F8.Visible = false
  1553.     F8.Active = false
  1554.     F7.Visible = false
  1555.     F7.Active = false
  1556.     F9.Visible = true
  1557.     F9.Active = true
  1558.     F12.Visible = false
  1559.     F12.Active = false
  1560. end)
  1561. local F11B5 = CreateGameSideButton("1Misc","Control Panel",15,false)
  1562. F11B5.MouseButton1Click:Connect(function()
  1563.     F6.Visible = false
  1564.     F6.Active = false
  1565.     F8.Visible = false
  1566.     F8.Active = false
  1567.     F7.Visible = false
  1568.     F7.Active = false
  1569.     F9.Visible = false
  1570.     F9.Active = false
  1571.     F12.Visible = true
  1572.     F12.Active = true
  1573. end)
  1574. F11.CanvasSize = UDim2.new(0,F11Layout.AbsoluteContentSize.X,0,F11Layout.AbsoluteContentSize.Y)
  1575. function CreateNormButton(name,text,size,scaled,parent)
  1576.     local Button = Instance.new("TextButton",parent)
  1577.     Button.Name = name
  1578.     Button.BackgroundColor3 = Color3.fromRGB(45,45,45)
  1579.     Button.BorderSizePixel = 0
  1580.     Button.BorderMode = "Inset"
  1581.     Button.Text = text
  1582.     Button.TextSize = size
  1583.     Button.TextScaled = scaled
  1584.     Button.Font = "SourceSans"
  1585.     Button.TextColor3 = Color3.new(1,1,1)
  1586.     Button.BorderColor3 = Color3.fromRGB(145,145,145)
  1587.     Button.AutoButtonColor = false
  1588.     Button.MouseEnter:Connect(function()
  1589.         Button.BorderSizePixel = 1
  1590.         Button.BackgroundColor3 = Color3.fromRGB(52,69,85)
  1591.     end)
  1592.     Button.MouseLeave:Connect(function()
  1593.         Button.BorderSizePixel = 0
  1594.         Button.BorderColor3 = Color3.fromRGB(145,145,145)
  1595.         Button.BackgroundColor3 = Color3.fromRGB(45,45,45)
  1596.     end)
  1597.     Button.MouseButton1Down:Connect(function()
  1598.         Button.BorderSizePixel = 1
  1599.         Button.BorderColor3 = Color3.fromRGB(26,87,149)
  1600.         Button.BackgroundColor3 = Color3.fromRGB(45,77,109)
  1601.     end)
  1602.     Button.MouseButton1Up:Connect(function()
  1603.         Button.BorderSizePixel = 1
  1604.         Button.BorderColor3 = Color3.fromRGB(145,145,145)
  1605.         Button.BackgroundColor3 = Color3.fromRGB(52,69,85)
  1606.     end)
  1607.     if Button.TextFits == false then
  1608.         Button.TextScaled = true
  1609.     end
  1610.     return Button
  1611. end
  1612. local F9B1 = CreateNormButton("ZR6Button","Energize R6",20,false,F9)
  1613. F9B1.MouseButton1Click:Connect(function()
  1614.     loadstring(game:HttpGet("https://pastebin.com/raw/i0QcivBF", true))()
  1615. end)
  1616. local F9B2 = CreateNormButton("ToyButton","Toy",20,false,F9)
  1617. F9B2.MouseButton1Click:Connect(function()
  1618.     local Char = plr.Character
  1619.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=782843869"
  1620.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=782846423"
  1621.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=782841498"
  1622.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1623.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=782845736"
  1624.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1625.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=782847020"
  1626.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=782842708"
  1627.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=782844582"
  1628.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=782845186"
  1629.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=782843345"
  1630. end)
  1631. local F9B3 = CreateNormButton("PirateButton","Pirate",20,false,F9)
  1632. F9B3.MouseButton1Click:Connect(function()
  1633.     local Char = plr.Character
  1634.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=750779899"
  1635.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=750780242"
  1636.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=750781874"
  1637.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1638.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=750782770"
  1639.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1640.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=750782230"
  1641.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=750783738"
  1642.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=750784579"
  1643.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=750785176"
  1644.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=750785693"
  1645. end)
  1646. local F9B4 = CreateNormButton("KnightButton","Knight",20,false,F9)
  1647. F9B4.MouseButton1Click:Connect(function()
  1648.     local Char = plr.Character
  1649.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=658360781"
  1650.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=657600338"
  1651.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=657595757"
  1652.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1653.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=657568135"
  1654.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1655.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=658409194"
  1656.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=657564596"
  1657.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=657560551"
  1658.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=657557095"
  1659.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=657552124"
  1660. end)
  1661. local F9B5 = CreateNormButton("AstronautButton","Astronaut",20,false,F9)
  1662. F9B5.MouseButton1Click:Connect(function()
  1663.     local Char = plr.Character
  1664.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=891609353"
  1665.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=891617961"
  1666.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=891621366"
  1667.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1668.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=891633237"
  1669.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1670.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=891627522"
  1671.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=891636393"
  1672.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=891639666"
  1673.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=891663592"
  1674.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=891636393"
  1675. end)
  1676. local F9B6 = CreateNormButton("VampireButton","Vampire",20,false,F9)
  1677. F9B6.MouseButton1Click:Connect(function()
  1678.     local Char = plr.Character
  1679.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083439238"
  1680.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083443587"
  1681.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083445855"
  1682.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1683.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083450166"
  1684.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1685.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083455352"
  1686.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083462077"
  1687.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=1083464683"
  1688.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=1083467779"
  1689.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083473930"
  1690. end)
  1691. local F9B7 = CreateNormButton("RobotButton","Robot",20,false,F9)
  1692. F9B7.MouseButton1Click:Connect(function()
  1693.     local Char = plr.Character
  1694.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616086039"
  1695.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616087089"
  1696.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616088211"
  1697.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1698.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616089559"
  1699.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1700.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616090535"
  1701.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616091570"
  1702.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616092998"
  1703.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616094091"
  1704.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616095330"
  1705. end)
  1706. local F9B8 = CreateNormButton("LevitaitionButton","Levitaition",20,false,F9)
  1707. F9B8.MouseButton1Click:Connect(function()
  1708.     local Char = plr.Character
  1709.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616003713"
  1710.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616005863"
  1711.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616006778"
  1712.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1713.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616008087"
  1714.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1715.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616008936"
  1716.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616010382"
  1717.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616011509"
  1718.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616012453"
  1719.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616013216"
  1720. end)
  1721. local F9B9 = CreateNormButton("BubblyButton","Bubbly",20,false,F9)
  1722. F9B9.MouseButton1Click:Connect(function()
  1723.     local Char = plr.Character
  1724.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=909997997"
  1725.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=910001910"
  1726.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=910004836"
  1727.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1728.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=910009958"
  1729.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1730.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=910016857"
  1731.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=910025107"
  1732.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=910028158"
  1733.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=910030921"
  1734.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=910034870"
  1735. end)
  1736. local F9B10 = CreateNormButton("WerewolfButton","Werewolf",20,false,F9)
  1737. F9B10.MouseButton1Click:Connect(function()
  1738.     local Char = plr.Character
  1739.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083182000"
  1740.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083189019"
  1741.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083195517"
  1742.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1743.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083214717"
  1744.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1745.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083218792"
  1746.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083216690"
  1747.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=1083222527"
  1748.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=1083225406"
  1749.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083178339"
  1750. end)
  1751. local F9B11 = CreateNormButton("StylishButton","Stylish",20,false,F9)
  1752. F9B11.MouseButton1Click:Connect(function()
  1753.     local Char = plr.Character
  1754.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616133594"
  1755.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616134815"
  1756.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616136790"
  1757.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1758.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616138447"
  1759.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1760.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616139451"
  1761.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616140816"
  1762.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616143378"
  1763.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616144772"
  1764.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616146177"
  1765. end)
  1766. local F9B12 = CreateNormButton("MageButton", "Mage",20,false,F9)
  1767. F9B12.MouseButton1Click:Connect(function()
  1768.     local Char = plr.Character
  1769.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=707826056"
  1770.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=707829716"
  1771.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=707742142"
  1772.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1773.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=707855907"
  1774.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1775.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=707853694"
  1776.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=707861613"
  1777.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=707876443"
  1778.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=707894699"
  1779.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=707897309"
  1780. end)
  1781. local F9B13 = CreateNormButton("CartoonyButton", "Cartoony",20,false,F9)
  1782. F9B13.MouseButton1Click:Connect(function()
  1783.     local Char = plr.Character
  1784.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=742636889"
  1785.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=742637151"
  1786.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=742637544"
  1787.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1788.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=742638445"
  1789.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1790.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=742637942"
  1791.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=742638842"
  1792.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=742639220"
  1793.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=742639812"
  1794.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=742640026"
  1795. end)
  1796. local F9B14 = CreateNormButton("YZombieButton","Zombie",20,false,F9)
  1797. F9B14.MouseButton1Click:Connect(function()
  1798.     local Char = plr.Character
  1799.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616156119"
  1800.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616157476"
  1801.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616158929"
  1802.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1803.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616160636"
  1804.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1805.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616161997"
  1806.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616163682"
  1807.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616165109"
  1808.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616166655"
  1809.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616168032"
  1810. end)
  1811. local F9B15 = CreateNormButton("SuperheroButton","Superhero",20,false,F9)
  1812. F9B15.MouseButton1Click:Connect(function()
  1813.     local Char = plr.Character
  1814.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616104706"
  1815.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616108001"
  1816.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616111295"
  1817.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1818.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616113536"
  1819.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1820.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616115533"
  1821.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616117076"
  1822.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616119360"
  1823.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616120861"
  1824.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616122287"
  1825. end)
  1826. local F9B16 = CreateNormButton("NinjaSButton","Ninja",20,false,F9)
  1827. F9B16.MouseButton1Click:Connect(function()
  1828.     local Char = plr.Character
  1829.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=656114359"
  1830.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=656115606"
  1831.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=656117400"
  1832.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1833.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=656118341"
  1834.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1835.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=656117878"
  1836.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=656118852"
  1837.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=656119721"
  1838.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=656121397"
  1839.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=656121766"
  1840. end)
  1841. local F9B17 = CreateNormButton("ElderButton","Elder",20,false,F9)
  1842. F9B17.MouseButton1Click:Connect(function()
  1843.     local Char = plr.Character
  1844.     Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=845392038"
  1845.     Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=845396048"
  1846.     Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=845397899"
  1847.     Char.Animate.idle.Animation1.Weight.Value = "9"
  1848.     Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=845400520"
  1849.     Char.Animate.idle.Animation2.Weight.Value = "1"
  1850.     Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=845398858"
  1851.     Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=845386501"
  1852.     Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=845401742"
  1853.     Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=845403127"
  1854.     Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=845403856"
  1855. end)
  1856. F9.CanvasSize = UDim2.new(0,F9Layout.AbsoluteContentSize.X,0,F9Layout.AbsoluteContentSize.Y)
  1857. local F8B1 = CreateNormButton("MySButton","Mythitem's",20,false,F8)
  1858. F8B1.MouseButton1Click:Connect(function()
  1859.     loadstring(game:HttpGet(('https://pastebin.com/raw/K1X29Gf1'),true))()
  1860. end)
  1861. local F8B2 = CreateNormButton("EvonButton","Evon's",20,false,F8)
  1862. F8B2.MouseButton1Click:Connect(function()
  1863.     loadstring(game:HttpGet(('https://pastebin.com/raw/GFgsdxM9'),true))()
  1864. end)
  1865. local F8B3 = CreateNormButton("PostmanButton","Postman Pat's",20,false,F8)
  1866. F8B3.MouseButton1Click:Connect(function()
  1867.     loadstring(game:HttpGet(('https://pastebin.com/raw/ZrLSX3BG'),true))()
  1868. end)
  1869. local F8B4 = CreateNormButton("ChonkButton","Chonky knife",20,false,F8)
  1870. F8B4.MouseButton1Click:Connect(function()
  1871.     loadstring(game:HttpGet(('https://pastebin.com/raw/tAY15hVY'),true))()
  1872. end)
  1873. F8.CanvasSize = UDim2.new(0,F8Layout.AbsoluteContentSize.X,0,F8Layout.AbsoluteContentSize.Y)
  1874. local F7B1 = CreateNormButton("AmGUIButton","Amokah's GUI",20,false,F7)
  1875. F7B1.MouseButton1Click:Connect(function()
  1876.     loadstring(game:HttpGet(('https://pastebin.com/raw/JS5SYqaU'),true))()
  1877. end)
  1878. local F7B2 = CreateNormButton("PBButton","Prison Breaker",20,false,F7)
  1879. F7B2.MouseButton1Click:Connect(function()
  1880.     loadstring(game:HttpGet(('https://pastebin.com/raw/KA5rd9tc'),true))()
  1881. end)
  1882. local F7B3 = CreateNormButton("RPButton","Redwood Prison",20,false,F7)
  1883. F7B3.MouseButton1Click:Connect(function()
  1884.     loadstring(game:HttpGet(('https://pastebin.com/raw/2QQAMVxU'),true))()
  1885. end)
  1886. F7.CanvasSize = UDim2.new(0,F7Layout.AbsoluteContentSize.X,0,F7Layout.AbsoluteContentSize.Y)
  1887. local F6B1 = CreateNormButton("HatFlingButton","Hat Fling",20,false,F6)
  1888. F6B1.MouseButton1Click:Connect(function()
  1889.     loadstring(game:GetObjects("rbxassetid://4732616720")[1].Source)()
  1890. end)
  1891. local F6B2 = CreateNormButton("JAButton","Jay Admin",20,false,F6)
  1892. F6B2.MouseButton1Click:Connect(function()
  1893.     loadstring(game:HttpGet(('https://pastebin.com/raw/zPtNSmuZ'),true))()
  1894. end)
  1895. local F6B3 = CreateNormButton("IYButton","Infinite Yields",20,false,F6)
  1896. F6B3.MouseButton1Click:Connect(function()
  1897.     loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  1898. end)
  1899. local F6B4 = CreateNormButton("CtPButton","Click to Teleport",20,false,F6)
  1900. F6B4.MouseButton1Click:Connect(function()
  1901.     loadstring(game:HttpGet(('https://pastebin.com/raw/rUecatt5'),true))()
  1902. end)
  1903. local F6B5 = CreateNormButton("FEButton","FE Checker",20,false,F6)
  1904. F6B5.MouseButton1Click:Connect(function()
  1905.     loadstring(game:HttpGet(('https://pastebin.com/raw/YwM006C0'),true))()
  1906. end)
  1907. local F6B6 = CreateNormButton("SpinButton","Spin GUI",20,false,F6)
  1908. F6B6.MouseButton1Click:Connect(function()
  1909.     loadstring(game:HttpGet(('https://pastebin.com/raw/zHxNWgY7'),true))()
  1910. end)
  1911. local F6B7 = CreateNormButton("DexButton","Dex",20,false,F6)
  1912. F6B7.MouseButton1Click:Connect(function()
  1913.     loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
  1914. end)
  1915. local F6B8 = CreateNormButton("RevizButton","Reviz",20,false,F6)
  1916. F6B8.MouseButton1Click:Connect(function()
  1917.     loadstring(game:HttpGet(('https://pastebin.com/raw/R4GL3fvY'),true))()
  1918. end)
  1919. local F6B9 = CreateNormButton("BAFButton","Bloxburg Auto Farm",20,true,F6)
  1920. F6B9.MouseButton1Click:Connect(function()
  1921.     loadstring(game:HttpGet(('https://pastebin.com/raw/Lx1amH3H'),true))()
  1922. end)
  1923. local F6B10 = CreateNormButton("VMM2Button","Vynixu's MM2",20,false,F6)
  1924. F6B10.MouseButton1Click:Connect(function()
  1925.     loadstring(game:GetObjects("rbxassetid://4001118261")[1].Source)()
  1926. end)
  1927. local F6B11 = CreateNormButton("ERIGV1Button","ERIG v1",20,false,F6)
  1928. F6B11.MouseButton1Click:Connect(function()
  1929.     loadstring(game:HttpGet(('https://pastebin.com/raw/JWXG3JdU'),true))()
  1930. end)
  1931. local F6B12 = CreateNormButton("ERIGV2Button","ERIG v2",20,false,F6)
  1932. F6B12.MouseButton1Click:Connect(function()
  1933.     loadstring(game:HttpGet(('https://pastebin.com/raw/XyJD2HwP'),true))()
  1934. end)
  1935. JayBar.FocusLost:Connect(function()
  1936.     F1:TweenPosition(UDim2.new(0,0,1,-30),"Out","Linear",0.25,true)
  1937.     ExecuteCmd(JayBar.Text)
  1938. end)
  1939. function ReadFile()
  1940.     pcall(function()
  1941.         local LoadedFile = HTTPService:JSONDecode(readfile("ERIG Saves.erig"))
  1942.         if LoadedFile.ClickToTeleport.Key  ~= nil then Saves.ClickToTeleport.Key = LoadedFile.ClickToTeleport.Key end
  1943.         if LoadedFile.JayPrefix ~= nil then Saves.JayPrefix = LoadedFile.JayPrefix
  1944.             JayBar.PlaceholderText = "Press "..Saves.JayPrefix.." or click to use command bar."
  1945.             JayPreChange.Text = LoadedFile.JayPrefix
  1946.         end
  1947.         if LoadedFile.ClickToTeleport.Abreviation  ~= nil then Saves.ClickToTeleport.Abreviation = LoadedFile.ClickToTeleport.Abreviation
  1948.             C2TP2.Text = "Button set to teleport is "..Saves.ClickToTeleport.Abreviation
  1949.         end
  1950.         if LoadedFile.ClickToTeleport.Toggle  ~= nil then Saves.ClickToTeleport.Toggle = LoadedFile.ClickToTeleport.Toggle
  1951.         if Saves.ClickToTeleport.Toggle == true then C2TPToggleButton.Text = "X"
  1952.             end
  1953.         end
  1954.         if LoadedFile.Sprint.Key  ~= nil then Saves.Sprint.Key = LoadedFile.Sprint.Key end
  1955.         if LoadedFile.Sprint.Abreviation  ~= nil then Saves.Sprint.Abreviation = LoadedFile.Sprint.Abreviation
  1956.             Sprint2.Text = "Button set to sprint is "..Saves.Sprint.Abreviation
  1957.         end
  1958.         if LoadedFile.Sprint.WalkSpeed  ~= nil then Saves.Sprint.WalkSpeed = LoadedFile.Sprint.WalkSpeed
  1959.             SprintWS.Text = LoadedFile.Sprint.WalkSpeed
  1960.         end
  1961.         if LoadedFile.Sprint.Toggle  ~= nil then Saves.Sprint.Toggle = LoadedFile.Sprint.Toggle
  1962.             if Saves.Sprint.Toggle == true then SprintToggleButton.Text = "X"
  1963.             end
  1964.         end
  1965.         if LoadedFile.CmdBinds  ~= nil then Saves.CmdBinds = LoadedFile.CmdBinds
  1966.             CreateBinds()
  1967.         end
  1968.     end)
  1969. end
  1970. ReadFile()
  1971. Notify("ERIG - v"..Version.." successfully loaded! File Saves may be lost due to updates.",20,"Loaded",20,10)
  1972.  
  1973. --local plr = game.Players.LocalPlayer
  1974. --plr.Character:SetPrimaryPartCFrame(CFrame.new(plr.Character.PrimaryPart.Position) * CFrame.Angles(0, math.atan2(-workspace.CurrentCamera.CFrame.lookVector.X, -workspace.CurrentCamera.CFrame.lookVector.Z), 0))
Advertisement
Add Comment
Please, Sign In to add comment