Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[Created by Nij55
- This is ERIG v3 - a WIP Script
- The Original script is here: https://pastebin.com/JWXG3JdU
- ERIG v2 Script is https://pastebin.com/XyJD2HwP
- --]]
- repeat wait(1) until game:IsLoaded()
- local Version = "3.1.0 - (stable)"
- local plr = game.Players.LocalPlayer
- local CoreGui = game.CoreGui
- local MainGui = Instance.new("ScreenGui",CoreGui)
- local HTTPService = game:GetService("HttpService")
- local mouse = plr:GetMouse()
- local C2TPkeydown = false
- local on = true
- local F13Set
- local uis = game:GetService("UserInputService")
- local CmdBindFrame = Instance.new("Frame",MainGui)
- CmdBindFrame.Visible = false
- local Saves = {ClickToTeleport = {Key,Abreviation = "",Toggle = false},Sprint = {Key,Abreviation = "",WalkSpeed = 60,Toggle = false}, SaveVersion = Version , JayPrefix = ";", CmdBinds = {}}
- local Commands = {{CmdId = 1, Name = "fly", Disc = "Makes you fly."},
- {CmdId = 2, Name = "unfly", Disc = "Disables fly."},
- {CmdId = 3, Name = "fspeed / fs [num]", Disc = "Controls the speed in which you fly (defualt is 1)."},
- {CmdId = 4, Name = "destroy / remove", Disc = "Removes ERIG from your game."},
- {CmdId = 5, Name = "noclip", Disc = "Allows you to walk through objects."},
- {CmdId = 6, Name = "clip", Disc = "Disabled noclip."},
- {CmdId = 7, Name = "nude / naked", Disc = "Removes your Shirt and Pants."},
- {CmdId = 8, Name = "goto / tp [plr]", Disc = "Teleports you to a player."},
- {CmdId = 9, Name = "disableprompts", Disc = "Removes purchase prompts from the game."},
- {CmdId = 10, Name = "jp / jumppower [num]", Disc = "Sets the height of your player jumps (defualt is 50)."},
- {CmdId = 11, Name = "ws / speed / walkspeed", Disc = "Sets the speed of your character (defualt is 16)."},
- {CmdId = 12, Name = "dex / explorer", Disc = "Loads Dex."},
- {CmdId = 13, Name = "spam [msg]", Disc = "Rapidly chats message."},
- {CmdId = 14, Name = "unspam", Disc = "Disable spam."},
- {CmdId = 15, Name = "chat [msg]", Disc = "Chats message."},
- {CmdId = 16, Name = "rj / rejoin", Disc = "Replaces you in your server."},
- {CmdId = 17, Name = "antiidle / antiafk", Disc = "Disables afk."},
- {CmdId = 18, Name = "execute / exec [msg]", Disc = "Execute code."},
- {CmdId = 19, Name = "creeper / creep", Disc = "Makes you look like a creeper and kills you (also a tool bypass for Bloxton)."},
- {CmdId = 21, Name = "view [plr]", Disc = "Moves camera to a player."},
- {CmdId = 22, Name = "unview", Disc = "Disables view."},
- {CmdId = 23, Name = "sit", Disc = "Makes you sit."},
- {CmdId = 24, Name = "unsit", Disc = "Disables sit."},
- {CmdId = 25, Name = "maxzoom / mz [num]", Disc = "Changes your maxzoom."},
- {CmdId = 26, Name = "unlockfirstperson / uncamlock", Disc = "Unlocks first person."},
- {CmdId = 27, Name = "firstperson / camlock", Disc = "Does the first person."},
- {CmdId = 28, Name = "save / savefile", Disc = "Saves everything."},
- {CmdId = 29, Name = "reset", Disc = "Kills you."},
- {CmdId = 30, Name = "refresh", Disc = "Kills you then teleports you to your position."}}
- if game.PlaceId == 155615604 then
- table.insert(Commands,20,{CmdId = 20, Name = "removefade", Disc = "Removes the frame from Prison Life."})
- end
- function SaveFile()
- pcall(function()
- writefile("ERIG Saves.erig",HTTPService:JSONEncode(Saves))
- end)
- end
- function StringGen(Length,NumbersEnabled,SpecialsEnabled,CapsEnabled)
- 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"}
- local Specials = {"!","@","#","$","%","^","&","*","(",")","_","-","=","+","[","]","{","}",";",":","'","",",",".","?","<",">","/","|","`","~"," "}
- local GeneratedString = ""
- local FullArray = {}
- if Length < 0 then
- return GeneratedString
- end
- local SiftedAmount = 0
- for i, v in pairs(Letters) do
- table.insert(FullArray,v)
- end
- if CapsEnabled then
- for i, v in pairs(Letters) do
- table.insert(FullArray,string.upper(v))
- end
- end
- if SpecialsEnabled then
- for i, v in pairs(Specials) do
- table.insert(FullArray,v)
- end
- end
- if NumbersEnabled then
- table.insert(FullArray,0)
- local NumbersAdded = 0
- while NumbersAdded > 9 do
- table.insert(FullArray,NumbersAdded +1)
- end
- end
- while SiftedAmount < Length do
- local SelectedChar = math.random(1,#FullArray)
- GeneratedString = GeneratedString..FullArray[SelectedChar]
- SiftedAmount = SiftedAmount +1
- end
- return GeneratedString
- end
- MainGui.Name = "ErigV3"
- MainGui.DisplayOrder = 2147483647
- MainGui.ResetOnSpawn = false
- local F1 = Instance.new("Frame",MainGui)
- F1.Name = "AdminMain"
- F1.Size = UDim2.new(0,MainGui.AbsoluteSize.X*0.4,0,MainGui.AbsoluteSize.Y*0.3)
- F1.Position = UDim2.new(0,0,1,-30)
- F1.BackgroundTransparency = 1
- F1.Active = true
- F1.MouseEnter:Connect(function()
- F1:TweenPosition(UDim2.new(0,0,0,MainGui.AbsoluteSize.Y*0.7),"Out","Linear",0.25,true)
- end)
- F1.MouseLeave:Connect(function()
- F1:TweenPosition(UDim2.new(0,0,1,-30),"Out","Linear",0.25,true)
- end)
- local TopBar = Instance.new("Frame",F1)
- TopBar.Name = "TopBar"
- TopBar.Size = UDim2.new(1,0,0,30)
- TopBar.BackgroundColor3 = Color3.fromRGB(60,60,60)
- TopBar.BorderSizePixel = 0
- TopBar.Active = true
- local ExitButton = Instance.new("TextButton",TopBar)
- ExitButton.Size = UDim2.new(0,22,0,22)
- ExitButton.Position = UDim2.new(1,-22,0,0)
- ExitButton.BackgroundTransparency = 1
- ExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- ExitButton.BorderSizePixel = 1
- ExitButton.Name = "ExitButton"
- ExitButton.BorderMode = "Inset"
- ExitButton.Text = "X"
- ExitButton.TextSize = 15
- ExitButton.Font = "SourceSansSemibold"
- ExitButton.TextColor3 = Color3.new(1,1,1)
- ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
- ExitButton.AutoButtonColor = false
- ExitButton.MouseEnter:Connect(function()
- ExitButton.BackgroundTransparency = 0
- end)
- ExitButton.MouseLeave:Connect(function()
- ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
- ExitButton.BackgroundTransparency = 1
- end)
- ExitButton.MouseButton1Down:Connect(function()
- ExitButton.BorderColor3 = Color3.fromRGB(26,87,149)
- ExitButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- ExitButton.MouseButton1Up:Connect(function()
- ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
- ExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- ExitButton.MouseButton1Click:Connect(function()
- SaveFile()
- wait(0.1)
- MainGui:Destroy()
- on = false
- script:Destroy()
- end)
- local AdminLogo = Instance.new("ImageLabel",TopBar)
- AdminLogo.Name = "Logo"
- AdminLogo.Image = "rbxassetid://5028412551"
- AdminLogo.Size = UDim2.new(0,35,0,30)
- AdminLogo.BackgroundTransparency = 1
- local AdminTittle = Instance.new("TextLabel",TopBar)
- AdminTittle.Size = UDim2.new(0.2,0,0,30)
- AdminTittle.Position = UDim2.new(0.4,0,0,0)
- AdminTittle.TextColor3 = Color3.new(1,1,1)
- AdminTittle.Font = "SourceSans"
- AdminTittle.Name = "Tittle"
- AdminTittle.TextSize = 18
- AdminTittle.BackgroundTransparency = 1
- AdminTittle.Text = "ERIG - v"..Version
- local JayBar = Instance.new("TextBox",F1)
- JayBar.Name = "JayBar"
- JayBar.Position = UDim2.new(0,0,0,30)
- JayBar.Size = UDim2.new(0.25,0,0.1,0)
- JayBar.BackgroundColor3 = Color3.fromRGB(45,45,45)
- JayBar.BorderSizePixel = 0
- JayBar.PlaceholderText = "Press "..Saves.JayPrefix.." or click to use command bar."
- JayBar.PlaceholderColor3 = Color3.fromRGB(90,90,90)
- JayBar.Text = ""
- JayBar.TextScaled = true
- JayBar.Font = "SourceSans"
- JayBar.TextColor3 = Color3.new(1,1,1)
- JayBar.TextScaled = true
- local PreFrame = Instance.new("Frame",F1)
- PreFrame.Name = "PreFrame"
- PreFrame.Size = UDim2.new(0.25,0,0.1,0)
- PreFrame.Position = UDim2.new(0,0,0.1,30)
- PreFrame.BackgroundColor3 = Color3.fromRGB(51,51,51)
- PreFrame.BorderColor3 = Color3.fromRGB(51,51,51)
- PreFrame.BorderMode = "Inset"
- PreFrame.BorderSizePixel = 0
- local JayPreChange = Instance.new("TextBox",PreFrame)
- JayPreChange.Name = "JayPrefixChangerChange"
- JayPreChange.Position = UDim2.new(0.9,0,0,0)
- JayPreChange.Size = UDim2.new(0.1,0,1,0)
- JayPreChange.BackgroundColor3 = Color3.fromRGB(45,45,45)
- JayPreChange.BorderSizePixel = 0
- JayPreChange.PlaceholderColor3 = Color3.fromRGB(90,90,90)
- JayPreChange.Text = Saves.JayPrefix
- JayPreChange.TextScaled = true
- JayPreChange.Font = "SourceSans"
- JayPreChange.TextColor3 = Color3.new(1,1,1)
- JayPreChange.TextScaled = true
- JayPreChange:GetPropertyChangedSignal("Text"):Connect(function()
- JayPreChange.Text = string.sub(JayPreChange.Text,1,1)
- Saves.JayPrefix = string.sub(JayPreChange.Text,1,1)
- JayBar.PlaceholderText = "Press "..Saves.JayPrefix.." or click to use command bar."
- SaveFile()
- end)
- local PreLabel = Instance.new("TextLabel",PreFrame)
- PreLabel.Size = UDim2.new(0.8,0,1,0)
- PreLabel.TextXAlignment = "Left"
- PreLabel.TextColor3 = Color3.new(1,1,1)
- PreLabel.Font = "SourceSans"
- PreLabel.Name = "PreLabel"
- PreLabel.TextSize = 20
- PreLabel.BackgroundTransparency = 1
- PreLabel.Text = "Edit prefix:"
- local JCmdsFrame = Instance.new("Frame",F1)
- JCmdsFrame.Name = "JCmdsFrame"
- JCmdsFrame.Size = UDim2.new(0.25,0,0.1,0)
- JCmdsFrame.Position = UDim2.new(0,0,0.2,30)
- JCmdsFrame.BackgroundColor3 = Color3.fromRGB(51,51,51)
- JCmdsFrame.BorderColor3 = Color3.fromRGB(51,51,51)
- JCmdsFrame.BorderMode = "Inset"
- JCmdsFrame.BorderSizePixel = 0
- local CmdsLabel = Instance.new("TextLabel",JCmdsFrame)
- CmdsLabel.Size = UDim2.new(1,0,1,0)
- CmdsLabel.TextColor3 = Color3.new(1,1,1)
- CmdsLabel.Font = "SourceSans"
- CmdsLabel.Name = "CmdsLabel"
- CmdsLabel.TextSize = 20
- CmdsLabel.BackgroundTransparency = 1
- CmdsLabel.Text = "Commands List:"
- local CommandDisc = Instance.new("Frame",MainGui)
- CommandDisc.Name = "CommandDisc"
- CommandDisc.Size = UDim2.new(0,150,0,10)
- CommandDisc.BackgroundColor3 = Color3.fromRGB(60,60,60)
- CommandDisc.BorderSizePixel = 0
- CommandDisc.Visible = false
- local CommandDiscLabel = Instance.new("TextLabel",CommandDisc)
- CommandDiscLabel.Size = UDim2.new(1,0,0,65)
- CommandDiscLabel.TextColor3 = Color3.new(1,1,1)
- CommandDiscLabel.BackgroundColor3 = Color3.fromRGB(51,51,51)
- CommandDiscLabel.Position = UDim2.new(0,0,1,0)
- CommandDiscLabel.BorderSizePixel = 0
- CommandDiscLabel.Font = "SourceSans"
- CommandDiscLabel.Name = "CommandDiscLabel"
- CommandDiscLabel.TextSize = 15
- CommandDiscLabel.TextWrapped = true
- mouse.Move:Connect(function()
- CommandDisc.Position = UDim2.new(0,mouse.X,0,mouse.Y -75)
- end)
- local CmdsFrameList = Instance.new("ScrollingFrame",F1)
- CmdsFrameList.Name = "CmdsFrameList"
- CmdsFrameList.MidImage = "rbxassetid://4933533316"
- CmdsFrameList.TopImage = "rbxassetid://4933533316"
- CmdsFrameList.BottomImage = "rbxassetid://4933533316"
- CmdsFrameList.ScrollBarImageColor3 = Color3.fromRGB(45,45,45)
- CmdsFrameList.Size = UDim2.new(0.25,0,0.7,-30)
- CmdsFrameList.Position = UDim2.new(0,0,0.3,30)
- CmdsFrameList.BackgroundColor3 = Color3.fromRGB(60,60,60)
- CmdsFrameList.BorderSizePixel = 0
- local CmdsFrameLayout = Instance.new("UIListLayout",CmdsFrameList)
- CmdsFrameLayout.FillDirection = "Vertical"
- CmdsFrameLayout.Padding = UDim.new(0,15)
- CmdsFrameLayout.HorizontalAlignment = "Left"
- CmdsFrameLayout.VerticalAlignment = "Top"
- CmdsFrameLayout.SortOrder = "Name"
- function CreateCmdLabel(id,cmd,disc)
- local Label = Instance.new("TextLabel",CmdsFrameList)
- Label.Size = UDim2.new(1,0,0,CmdsFrameList.AbsoluteSize.Y*0.1)
- CmdsLabel.TextColor3 = Color3.new(1,1,1)
- Label.Font = "SourceSans"
- Label.Name = "Cmd"..id
- Label.TextColor3 = Color3.new(1,1,1)
- Label.TextXAlignment = "Left"
- Label.TextSize = 15
- Label.BackgroundTransparency = 1
- Label.Text = cmd
- CmdsFrameList.CanvasSize = UDim2.new(0,0,0,CmdsFrameLayout.AbsoluteContentSize.Y)
- Label.MouseEnter:Connect(function()
- if Label.Visible == true then
- CommandDiscLabel.Text = disc
- CommandDisc.Visible = true
- end
- end)
- Label.MouseLeave:Connect(function()
- CommandDisc.Visible = false
- CommandDiscLabel.Text = "cmd"
- end)
- end
- for i, v in pairs(Commands) do
- CreateCmdLabel(v.CmdId,v.Name,v.Disc)
- end
- JayBar:GetPropertyChangedSignal("Text"):Connect(function()
- local MatchAmount = 0
- if JayBar.Text == " " or nil then
- for i,v in pairs(CmdsFrameList:GetChildren()) do
- if v.ClassName == "TextLabel" then
- v.Visible = true
- end
- end
- else
- for i,v in pairs(CmdsFrameList:GetChildren()) do
- if v.ClassName == "TextLabel" then
- if string.match(v.Text,JayBar.Text) then
- MatchAmount = MatchAmount +1
- v.Name = MatchAmount
- v.Visible = true
- else
- v.Visible = false
- end
- end
- end
- end
- end)
- local F2 = Instance.new("Frame",F1)
- F2.BackgroundColor3 = Color3.fromRGB(51,51,51)
- F2.BorderColor3 = Color3.fromRGB(51,51,51)
- F2.BorderMode = "Inset"
- F2.BorderSizePixel = 0
- F2.Active = true
- F2.Name = "InternalFrame"
- F2.Size = UDim2.new(0.75,0,1,-30)
- F2.Position = UDim2.new(0.25,0,0,30)
- local F4 = Instance.new("Frame",F2)
- F4.BackgroundTransparency = 1
- F4.Active = true
- F4.Name = "CommandFrame"
- F4.Size = UDim2.new(1,0,0.1,0)
- F4.Position = UDim2.new(0,0,0.875,0)
- local ExecBar = Instance.new("TextBox",F4)
- ExecBar.Name = "ExecBar"
- ExecBar.Position = UDim2.new(0.025,0,0,0)
- ExecBar.Size = UDim2.new(0.75,0,1,0)
- ExecBar.BackgroundColor3 = Color3.fromRGB(45,45,45)
- ExecBar.BorderSizePixel = 0
- ExecBar.PlaceholderText = "Script executor"
- ExecBar.PlaceholderColor3 = Color3.fromRGB(90,90,90)
- ExecBar.Text = ""
- ExecBar.TextScaled = true
- ExecBar.Font = "SourceSans"
- ExecBar.TextColor3 = Color3.new(1,1,1)
- ExecBar.TextScaled = true
- local ExecButton = Instance.new("TextButton",F4)
- ExecButton.Name = "ExecuteButton"
- ExecButton.Size = UDim2.new(0.15,0,1,0)
- ExecButton.Position = UDim2.new(0.825,0,0,0)
- ExecButton.BackgroundTransparency = 0
- ExecButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
- ExecButton.BorderSizePixel = 0
- ExecButton.BorderMode = "Inset"
- ExecButton.Text = "Execute"
- ExecButton.TextSize = 15
- ExecButton.Font = "SourceSans"
- ExecButton.TextColor3 = Color3.new(1,1,1)
- ExecButton.BorderColor3 = Color3.fromRGB(145,145,145)
- ExecButton.AutoButtonColor = false
- local NotificationFolder = Instance.new("Folder",MainGui)
- NotificationFolder.Name = "NotificationFolder"
- function Notify(text,textsize,tittle,tittlesize,lenght)
- NotificationFolder:ClearAllChildren()
- wait(0.1)
- local NotificationFrame = Instance.new("Frame",NotificationFolder)
- NotificationFrame.Name = "Notification"
- NotificationFrame.Size = UDim2.new(0,250,0.0,30)
- NotificationFrame.Position = UDim2.new(1,-250,1,0)
- NotificationFrame.BackgroundColor3 = Color3.fromRGB(60,60,60)
- NotificationFrame.BorderSizePixel = 0
- NotificationFrame.Visible = true
- local NotTittle = Instance.new("TextLabel",NotificationFrame)
- NotTittle.Size = UDim2.new(0,100,1,0)
- NotTittle.BackgroundTransparency = 1
- NotTittle.TextSize = tittlesize
- NotTittle.Text = tittle
- NotTittle.TextColor3 = Color3.new(1,1,1)
- NotTittle.Font = "SourceSans"
- NotTittle.Position = UDim2.new(0,75,0,0)
- local NotificationSecondary = Instance.new("Frame",NotificationFrame)
- NotificationSecondary.Name = "NotificationSecondary"
- NotificationSecondary.Size = UDim2.new(0,250,0.0,150)
- NotificationSecondary.Position = UDim2.new(0,0,1,0)
- NotificationSecondary.BackgroundColor3 = Color3.fromRGB(51,51,51)
- NotificationSecondary.BorderSizePixel = 0
- NotificationSecondary.Visible = true
- local NotLabel = Instance.new("TextLabel",NotificationSecondary)
- NotLabel.Size = UDim2.new(1,0,1,0)
- NotLabel.BackgroundTransparency = 1
- NotLabel.TextSize = textsize
- NotLabel.TextWrapped = true
- NotLabel.Text = text
- NotLabel.TextColor3 = Color3.new(1,1,1)
- NotLabel.Font = "SourceSans"
- local NotExitButton = Instance.new("TextButton",NotificationFrame)
- NotExitButton.Size = UDim2.new(0,22,0,22)
- NotExitButton.Position = UDim2.new(1,-22,0,0)
- NotExitButton.BackgroundTransparency = 1
- NotExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- NotExitButton.BorderSizePixel = 1
- NotExitButton.Name = "NotExitButton"
- NotExitButton.BorderMode = "Inset"
- NotExitButton.Text = "X"
- NotExitButton.TextSize = 15
- NotExitButton.Font = "SourceSansSemibold"
- NotExitButton.TextColor3 = Color3.new(1,1,1)
- NotExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
- NotExitButton.AutoButtonColor = false
- NotExitButton.MouseEnter:Connect(function()
- NotExitButton.BackgroundTransparency = 0
- end)
- NotExitButton.MouseLeave:Connect(function()
- NotExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
- NotExitButton.BackgroundTransparency = 1
- end)
- NotExitButton.MouseButton1Down:Connect(function()
- NotExitButton.BorderColor3 = Color3.fromRGB(26,87,149)
- NotExitButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- NotExitButton.MouseButton1Up:Connect(function()
- NotExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
- NotExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- NotExitButton.MouseButton1Click:Connect(function()
- NotificationFolder:ClearAllChildren()
- end)
- NotificationFrame:TweenPosition(UDim2.new(1,-250,1,-180),"Out","Linear",0.5,true)
- wait(0.5)
- wait(lenght)
- NotificationFolder:ClearAllChildren()
- end
- ExecButton.MouseEnter:Connect(function()
- ExecButton.BorderSizePixel = 1
- ExecButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- ExecButton.MouseLeave:Connect(function()
- ExecButton.BorderSizePixel = 0
- ExecButton.BorderColor3 = Color3.fromRGB(145,145,145)
- ExecButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
- end)
- ExecButton.MouseButton1Down:Connect(function()
- ExecButton.BorderSizePixel = 1
- ExecButton.BorderColor3 = Color3.fromRGB(26,87,149)
- ExecButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- ExecButton.MouseButton1Up:Connect(function()
- ExecButton.BorderSizePixel = 1
- ExecButton.BorderColor3 = Color3.fromRGB(145,145,145)
- ExecButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- ExecButton.MouseButton1Click:Connect(function()
- loadstring(ExecBar.Text)()
- end)
- ExecBar.FocusLost:Connect(function(enter)
- if enter then
- loadstring(ExecBar.Text)()
- end
- end)
- function CreateMainScrollFrame(name,Visible)
- local Frame = Instance.new("ScrollingFrame",F2)
- Frame.Name = name
- Frame.Visible = Visible
- Frame.MidImage = "rbxassetid://4933533316"
- Frame.TopImage = "rbxassetid://4933533316"
- Frame.BottomImage = "rbxassetid://4933533316"
- Frame.ScrollBarImageColor3 = Color3.fromRGB(45,45,45)
- Frame.Size = UDim2.new(0.775,0,0.825,0)
- Frame.Position = UDim2.new(0.2,0,0.025,0)
- Frame.BackgroundColor3 = Color3.fromRGB(60,60,60)
- Frame.BorderSizePixel = 0
- local FrameLayout = Instance.new("UIGridLayout",Frame)
- FrameLayout.HorizontalAlignment = "Center"
- FrameLayout.VerticalAlignment = "Center"
- FrameLayout.CellSize = UDim2.new(0,Frame.AbsoluteSize.X*0.25,0,Frame.AbsoluteSize.Y*0.2)
- FrameLayout.CellPadding = UDim2.new(0.025,0,0.025,0)
- FrameLayout.FillDirectionMaxCells = 3
- return {Frame,FrameLayout}
- end
- function CreateMainFrame(name,Visible,Active)
- local Frame = Instance.new("Frame",F2)
- Frame.Name = name
- Frame.Size = UDim2.new(0.775,0,0.825,0)
- Frame.Position = UDim2.new(0.2,0,0.025,0)
- Frame.BackgroundColor3 = Color3.fromRGB(60,60,60)
- Frame.BorderSizePixel = 0
- Frame.Visible = Visible
- Frame.Active = Active
- return Frame
- end
- local F12 = CreateMainFrame("MiscFrames1",true,true)
- local C2TPToggleButton = Instance.new("TextButton",F12)
- C2TPToggleButton.Size = UDim2.new(0,F12.AbsoluteSize.Y*0.05,0,F12.AbsoluteSize.Y*0.05)
- C2TPToggleButton.Position = UDim2.new(0.0125,0,0,F12.AbsoluteSize.Y*0.035)
- C2TPToggleButton.BackgroundColor3 = Color3.fromRGB(224,224,224)
- C2TPToggleButton.BorderSizePixel = 1
- C2TPToggleButton.TextScaled = true
- C2TPToggleButton.TextColor3 = Color3.fromRGB(64,64,64)
- C2TPToggleButton.LineHeight = 0
- C2TPToggleButton.Text = " "
- C2TPToggleButton. BorderColor3 = Color3.fromRGB(64,64,64)
- C2TPToggleButton.MouseButton1Click:Connect(function()
- if Saves.ClickToTeleport.Toggle == true then
- C2TPToggleButton.Text = " "
- Saves.ClickToTeleport.Toggle = false
- elseif Saves.ClickToTeleport.Toggle == false then
- C2TPToggleButton.Text = "X"
- Saves.ClickToTeleport.Toggle = true
- end
- end)
- local F13 = Instance.new("Frame",MainGui)
- F13.Name = "KeyFrame"
- F13.Size = UDim2.new(0,MainGui.AbsoluteSize.X*0.2,0.0,30)
- F13.Position = UDim2.new(0.3,0,0.3,0)
- F13.BackgroundColor3 = Color3.fromRGB(60,60,60)
- F13.BorderSizePixel = 0
- F13.Draggable = true
- F13.Visible = false
- F13.Selectable = true
- local C2TP = Instance.new("TextLabel",F12)
- C2TP.Name = "C2TPLabel"
- C2TP.Position = UDim2.new(0.05,0,0,0)
- C2TP.Size = UDim2.new(0.2,0,0,F12.AbsoluteSize.Y*0.1)
- C2TP.Font = "SourceSans"
- C2TP.TextScaled = true
- C2TP.Text = "Click to Teleport"
- C2TP.TextColor3 = Color3.new(1,1,1)
- C2TP.BackgroundTransparency = 1
- C2TP.TextXAlignment = "Left"
- local C2TP2 = Instance.new("TextLabel",F12)
- C2TP2.Name = "C2TP2"
- C2TP2.Position = UDim2.new(0,0,0,F12.AbsoluteSize.Y*0.1)
- C2TP2.Size = UDim2.new(0.2,0,0,F12.AbsoluteSize.Y*0.1)
- C2TP2.Font = "SourceSans"
- C2TP2.TextScaled = true
- C2TP2.Text = "No button set to teleport."
- C2TP2.TextColor3 = Color3.new(1,1,1)
- C2TP2.BackgroundTransparency = 1
- local C2TP2Change = Instance.new("TextButton",F12)
- C2TP2Change.Name = "C2TP2Change"
- C2TP2Change.BackgroundColor3 = Color3.fromRGB(45,45,45)
- C2TP2Change.BorderSizePixel = 0
- C2TP2Change.BorderMode = "Inset"
- C2TP2Change.Text = "Change"
- C2TP2Change.TextScaled = true
- C2TP2Change.Font = "SourceSans"
- C2TP2Change.Size = UDim2.new(0.15,0,0,F12.AbsoluteSize.Y*0.1)
- C2TP2Change.Position = UDim2.new(0.025,0,0,F12.AbsoluteSize.Y*0.2)
- C2TP2Change.TextColor3 = Color3.new(1,1,1)
- C2TP2Change.BorderColor3 = Color3.fromRGB(145,145,145)
- C2TP2Change.AutoButtonColor = false
- C2TP2Change.MouseEnter:Connect(function()
- C2TP2Change.BorderSizePixel = 1
- C2TP2Change.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- C2TP2Change.MouseLeave:Connect(function()
- C2TP2Change.BorderSizePixel = 0
- C2TP2Change.BorderColor3 = Color3.fromRGB(145,145,145)
- C2TP2Change.BackgroundColor3 = Color3.fromRGB(45,45,45)
- end)
- C2TP2Change.MouseButton1Down:Connect(function()
- C2TP2Change.BorderSizePixel = 1
- C2TP2Change.BorderColor3 = Color3.fromRGB(26,87,149)
- C2TP2Change.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- C2TP2Change.MouseButton1Up:Connect(function()
- C2TP2Change.BorderSizePixel = 1
- C2TP2Change.BorderColor3 = Color3.fromRGB(145,145,145)
- C2TP2Change.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- C2TP2Change.MouseButton1Click:Connect(function()
- F13Set = "tp"
- F13.F14.SetBindButton.Text = "Set bind"
- F13.Visible = true
- F13.Active = true
- end)
- local SprintToggleButton = Instance.new("TextButton",F12)
- SprintToggleButton.Size = UDim2.new(0,F12.AbsoluteSize.Y*0.05,0,F12.AbsoluteSize.Y*0.05)
- SprintToggleButton.Position = UDim2.new(0.0125,0,0,F12.AbsoluteSize.Y*0.335)
- SprintToggleButton.BackgroundColor3 = Color3.fromRGB(224,224,224)
- SprintToggleButton.BorderSizePixel = 1
- SprintToggleButton.TextScaled = true
- SprintToggleButton.TextColor3 = Color3.fromRGB(64,64,64)
- SprintToggleButton.LineHeight = 0
- SprintToggleButton.Text = " "
- SprintToggleButton. BorderColor3 = Color3.fromRGB(64,64,64)
- SprintToggleButton.MouseButton1Click:Connect(function()
- if Saves.Sprint.Toggle == true then
- SprintToggleButton.Text = " "
- Saves.Sprint.Toggle = false
- elseif Saves.Sprint.Toggle == false then
- SprintToggleButton.Text = "X"
- Saves.Sprint.Toggle = true
- end
- end)
- local Sprint = Instance.new("TextLabel",F12)
- Sprint.Name = "SprintLabel"
- Sprint.Position = UDim2.new(0.05,0,0,F12.AbsoluteSize.Y*0.3)
- Sprint.Size = UDim2.new(0.2,0,0,F12.AbsoluteSize.Y*0.1)
- Sprint.Font = "SourceSans"
- Sprint.TextScaled = true
- Sprint.Text = "Sprint"
- Sprint.TextColor3 = Color3.new(1,1,1)
- Sprint.BackgroundTransparency = 1
- Sprint.TextXAlignment = "Left"
- local Sprint2 = Instance.new("TextLabel",F12)
- Sprint2.Name = "Sprint2"
- Sprint2.Position = UDim2.new(0,0,0,F12.AbsoluteSize.Y*0.4)
- Sprint2.Size = UDim2.new(0.2,0,0,F12.AbsoluteSize.Y*0.1)
- Sprint2.Font = "SourceSans"
- Sprint2.TextScaled = true
- Sprint2.Text = "No button set to sprint."
- Sprint2.TextColor3 = Color3.new(1,1,1)
- Sprint2.BackgroundTransparency = 1
- local Sprint2Change = Instance.new("TextButton",F12)
- Sprint2Change.Name = "Sprint2Change"
- Sprint2Change.BackgroundColor3 = Color3.fromRGB(45,45,45)
- Sprint2Change.BorderSizePixel = 0
- Sprint2Change.BorderMode = "Inset"
- Sprint2Change.Text = "Change"
- Sprint2Change.TextScaled = true
- Sprint2Change.Font = "SourceSans"
- Sprint2Change.Size = UDim2.new(0.15,0,0,F12.AbsoluteSize.Y*0.1)
- Sprint2Change.Position = UDim2.new(0.025,0,0,F12.AbsoluteSize.Y*0.5)
- Sprint2Change.TextColor3 = Color3.new(1,1,1)
- Sprint2Change.BorderColor3 = Color3.fromRGB(145,145,145)
- Sprint2Change.AutoButtonColor = false
- Sprint2Change.MouseEnter:Connect(function()
- Sprint2Change.BorderSizePixel = 1
- Sprint2Change.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- Sprint2Change.MouseLeave:Connect(function()
- Sprint2Change.BorderSizePixel = 0
- Sprint2Change.BorderColor3 = Color3.fromRGB(145,145,145)
- Sprint2Change.BackgroundColor3 = Color3.fromRGB(45,45,45)
- end)
- Sprint2Change.MouseButton1Down:Connect(function()
- Sprint2Change.BorderSizePixel = 1
- Sprint2Change.BorderColor3 = Color3.fromRGB(26,87,149)
- Sprint2Change.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- Sprint2Change.MouseButton1Up:Connect(function()
- Sprint2Change.BorderSizePixel = 1
- Sprint2Change.BorderColor3 = Color3.fromRGB(145,145,145)
- Sprint2Change.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- Sprint2Change.MouseButton1Click:Connect(function()
- F13Set = "sprint"
- F13.F14.SetBindButton.Text = "Set bind"
- F13.Visible = true
- F13.Active = true
- end)
- local SprintWSLabel = Instance.new("TextLabel",F12)
- SprintWSLabel.Name = "SprintWSLabel"
- SprintWSLabel.Position = UDim2.new(0,0,0,F12.AbsoluteSize.Y*0.6)
- SprintWSLabel.Size = UDim2.new(0.1,0,0,F12.AbsoluteSize.Y*0.1)
- SprintWSLabel.Font = "SourceSans"
- SprintWSLabel.TextScaled = true
- SprintWSLabel.Text = "WalkSpeed:"
- SprintWSLabel.TextColor3 = Color3.new(1,1,1)
- SprintWSLabel.BackgroundTransparency = 1
- SprintWSLabel:GetPropertyChangedSignal("Text"):Connect(function()
- Saves.Sprint.WalkSpeed = SprintWSLabel.Text
- SaveFile()
- end)
- local SprintWS = Instance.new("TextBox",F12)
- SprintWS.Name = "SprintWS"
- SprintWS.Position = UDim2.new(0.1,0,0,F12.AbsoluteSize.Y*0.61)
- SprintWS.Size = UDim2.new(0.05,0,0,F12.AbsoluteSize.Y*0.08)
- SprintWS.BackgroundColor3 = Color3.fromRGB(45,45,45)
- SprintWS.BorderSizePixel = 0
- SprintWS.PlaceholderColor3 = Color3.fromRGB(90,90,90)
- SprintWS.Text = "60"
- SprintWS.TextScaled = true
- SprintWS.Font = "SourceSans"
- SprintWS.TextColor3 = Color3.new(1,1,1)
- SprintWS.TextScaled = true
- local BindEditFrame = Instance.new("ScrollingFrame",F12)
- BindEditFrame.Name = "BindEditFrame"
- BindEditFrame.MidImage = "rbxassetid://4933533316"
- BindEditFrame.TopImage = "rbxassetid://4933533316"
- BindEditFrame.BottomImage = "rbxassetid://4933533316"
- BindEditFrame.ScrollBarImageColor3 = Color3.fromRGB(45,45,45)
- BindEditFrame.Size = UDim2.new(0.4,0,0.8,0)
- BindEditFrame.Position = UDim2.new(0.6,0,0.1,0)
- BindEditFrame.BackgroundColor3 = Color3.fromRGB(60,60,60)
- BindEditFrame.BorderSizePixel = 0
- local BindEditFrameLayout = Instance.new("UIListLayout",BindEditFrame)
- BindEditFrameLayout.FillDirection = "Vertical"
- BindEditFrameLayout.Padding = UDim.new(0,5)
- BindEditFrameLayout.HorizontalAlignment = "Left"
- BindEditFrameLayout.SortOrder = "Name"
- BindEditFrameLayout.VerticalAlignment = "Top"
- local BindEditLabel = Instance.new("TextLabel",F12)
- BindEditLabel.Size = UDim2.new(0.4,0,0.1,0)
- BindEditLabel.Position = UDim2.new(0.6,0,0,0)
- BindEditLabel.TextColor3 = Color3.new(1,1,1)
- BindEditLabel.Font = "SourceSans"
- BindEditLabel.Name = "BindEditLabel"
- BindEditLabel.TextColor3 = Color3.new(1,1,1)
- BindEditLabel.TextSize = 20
- BindEditLabel.BackgroundTransparency = 1
- BindEditLabel.Text = "Edit Key Binds:"
- local BindAdd = Instance.new("TextButton",F12)
- BindAdd.Name = "BindAdd"
- BindAdd.BackgroundColor3 = Color3.fromRGB(45,45,45)
- BindAdd.BorderSizePixel = 0
- BindAdd.BorderMode = "Inset"
- BindAdd.Text = "Add Key Bind"
- BindAdd.TextScaled = true
- BindAdd.Font = "SourceSans"
- BindAdd.Size = UDim2.new(0.3,0,0.1,0)
- BindAdd.Position = UDim2.new(0.65,0,0.9,0)
- BindAdd.TextColor3 = Color3.new(1,1,1)
- BindAdd.BorderColor3 = Color3.fromRGB(145,145,145)
- BindAdd.AutoButtonColor = false
- BindAdd.MouseEnter:Connect(function()
- BindAdd.BorderSizePixel = 1
- BindAdd.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- BindAdd.MouseLeave:Connect(function()
- BindAdd.BorderSizePixel = 0
- BindAdd.BorderColor3 = Color3.fromRGB(145,145,145)
- BindAdd.BackgroundColor3 = Color3.fromRGB(45,45,45)
- end)
- BindAdd.MouseButton1Down:Connect(function()
- BindAdd.BorderSizePixel = 1
- BindAdd.BorderColor3 = Color3.fromRGB(26,87,149)
- BindAdd.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- BindAdd.MouseButton1Up:Connect(function()
- BindAdd.BorderSizePixel = 1
- BindAdd.BorderColor3 = Color3.fromRGB(145,145,145)
- BindAdd.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- BindAdd.MouseButton1Click:Connect(function()
- CmdBindFrame.Visible = true
- CmdBindFrame.Active = true
- end)
- function CreateBindLabel(bind,cmd,bindid,pos)
- local Frame = Instance.new("Frame",BindEditFrame)
- Frame.Name = "KeyFrame"
- Frame.Size = UDim2.new(1,0,0,BindEditFrame.AbsoluteSize.Y*0.1)
- Frame.Position = UDim2.new(0.3,0,0.3,0)
- Frame.BackgroundColor3 = Color3.fromRGB(60,60,60)
- Frame.BorderSizePixel = 0
- local DelB = Instance.new("TextButton",Frame)
- DelB.Name = "DelB"
- DelB.BackgroundColor3 = Color3.fromRGB(45,45,45)
- DelB.BorderSizePixel = 0
- DelB.BorderMode = "Inset"
- DelB.Text = "Delete"
- DelB.TextScaled = true
- DelB.Font = "SourceSans"
- DelB.Size = UDim2.new(0.2,0,1,0)
- DelB.Position = UDim2.new(0.8,0,0,0)
- DelB.TextColor3 = Color3.new(1,1,1)
- DelB.BorderColor3 = Color3.fromRGB(145,145,145)
- DelB.AutoButtonColor = false
- DelB.MouseEnter:Connect(function()
- DelB.BorderSizePixel = 1
- DelB.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- DelB.MouseLeave:Connect(function()
- DelB.BorderSizePixel = 0
- DelB.BorderColor3 = Color3.fromRGB(145,145,145)
- DelB.BackgroundColor3 = Color3.fromRGB(45,45,45)
- end)
- DelB.MouseButton1Down:Connect(function()
- DelB.BorderSizePixel = 1
- DelB.BorderColor3 = Color3.fromRGB(26,87,149)
- DelB.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- DelB.MouseButton1Up:Connect(function()
- DelB.BorderSizePixel = 1
- DelB.BorderColor3 = Color3.fromRGB(145,145,145)
- DelB.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- DelB.MouseButton1Click:Connect(function()
- local lpos = 999
- table.remove(Saves.CmdBinds,pos)
- for i,v in pairs(Saves.CmdBinds) do
- v.Pos = i
- end
- for i,v in pairs(BindEditFrame:GetChildren()) do
- if v.ClassName == "Frame" then
- v:Destroy()
- end
- end
- for i,v in pairs(Saves.CmdBinds) do
- CreateBindLabel(v.Key,v.Cmd,v.Id,v.Pos)
- end
- end)
- local Label = Instance.new("TextLabel",Frame)
- Label.Size = UDim2.new(1,0,0,BindEditFrame.AbsoluteSize.Y*0.1)
- Label.TextColor3 = Color3.new(1,1,1)
- Label.Font = "SourceSans"
- Label.Name = "Bind"..bindid
- Label.TextColor3 = Color3.new(1,1,1)
- Label.TextXAlignment = "Left"
- Label.TextSize = 15
- Label.BackgroundTransparency = 1
- Label.Text = string.sub(bind,14).." - "..cmd
- local Id = Instance.new("StringValue",Frame)
- Id.Name = "Id"
- Id.Value = bindid
- BindEditFrame.CanvasSize = UDim2.new(0,BindEditFrameLayout.AbsoluteContentSize.X,0,BindEditFrameLayout.AbsoluteContentSize.Y)
- end
- function CreateBinds()
- for i,v in pairs(BindEditFrame:GetChildren()) do
- if v.ClassName == "Frame" then
- v:Destroy()
- end
- end
- for i,v in pairs(Saves.CmdBinds) do
- CreateBindLabel(v.Key,v.Cmd,v.Id,v.Pos)
- end
- end
- CreateBinds()
- local F6Ar = CreateMainScrollFrame("ScriptButtons",false)
- local F6 = F6Ar[1]
- local F6Layout = F6Ar[2]
- local F7Ar = CreateMainScrollFrame("PrisonButtons",false)
- local F7 = F7Ar[1]
- local F7Layout = F7Ar[2]
- local F8Ar = CreateMainScrollFrame("DaHoodButtons",false)
- local F8 = F8Ar[1]
- local F8Layout = F8Ar[2]
- local F9Ar = CreateMainScrollFrame("Animations",false)
- local F9 = F9Ar[1]
- local F9Layout = F9Ar[2]
- local F10Ar = CreateMainScrollFrame("JayAdmin",false)
- local F10 = F10Ar[1]
- local F10Layout = F10Ar[2]
- local F11 = Instance.new("ScrollingFrame",F2)
- F11.Name = "GameSideBar"
- F11.MidImage = "rbxassetid://4933533316"
- F11.TopImage = "rbxassetid://4933533316"
- F11.BottomImage = "rbxassetid://4933533316"
- F11.ScrollBarImageColor3 = Color3.fromRGB(45,45,45)
- F11.Size = UDim2.new(0.15,0,0.825,0)
- F11.Position = UDim2.new(0.025,0,0.025,0)
- F11.BackgroundColor3 = Color3.fromRGB(60,60,60)
- F11.BorderSizePixel = 0
- local F11Layout = Instance.new("UIListLayout",F11)
- F11Layout.FillDirection = "Vertical"
- F11Layout.Padding = UDim.new(0.005,0)
- F11Layout.HorizontalAlignment = "Left"
- F11Layout.VerticalAlignment = "Top"
- local F13Logo = Instance.new("ImageLabel",F13)
- F13Logo.Name = "ErigLogo"
- F13Logo.Image = "rbxassetid://5028412551"
- F13Logo.Size = UDim2.new(0,35,0,30)
- F13Logo.BackgroundTransparency = 1
- local F13Tittle = Instance.new("TextLabel",F13)
- F13Tittle.Size = UDim2.new(0.2,0,0,30)
- F13Tittle.Position = UDim2.new(0.4,0,0,0)
- F13Tittle.TextColor3 = Color3.new(1,1,1)
- F13Tittle.Font = "SourceSans"
- F13Tittle.Name = "Tittle"
- F13Tittle.TextSize = 18
- F13Tittle.BackgroundTransparency = 1
- F13Tittle.Text = "Keybindings"
- local F13ExitButton = Instance.new("TextButton",F13)
- F13ExitButton.Size = UDim2.new(0,22,0,22)
- F13ExitButton.Position = UDim2.new(1,-22,0,0)
- F13ExitButton.BackgroundTransparency = 1
- F13ExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- F13ExitButton.BorderSizePixel = 1
- F13ExitButton.Name = "F13ExitButton"
- F13ExitButton.BorderMode = "Inset"
- F13ExitButton.Text = "X"
- F13ExitButton.TextSize = 15
- F13ExitButton.Font = "SourceSansSemibold"
- F13ExitButton.TextColor3 = Color3.new(1,1,1)
- F13ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
- F13ExitButton.AutoButtonColor = false
- F13ExitButton.MouseEnter:Connect(function()
- F13ExitButton.BackgroundTransparency = 0
- end)
- F13ExitButton.MouseLeave:Connect(function()
- F13ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
- F13ExitButton.BackgroundTransparency = 1
- end)
- F13ExitButton.MouseButton1Down:Connect(function()
- F13ExitButton.BorderColor3 = Color3.fromRGB(26,87,149)
- F13ExitButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- F13ExitButton.MouseButton1Up:Connect(function()
- F13ExitButton.BorderColor3 = Color3.fromRGB(145,145,145)
- F13ExitButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- F13ExitButton.MouseButton1Click:Connect(function()
- F13.Visible = false
- F13.Active = false
- end)
- local F14 = Instance.new("Frame",F13)
- F14.Name = "F14"
- F14.Size = UDim2.new(0,MainGui.AbsoluteSize.X*0.2,0,MainGui.AbsoluteSize.Y*0.2)
- F14.Position = UDim2.new(0,0,1,0)
- F14.BackgroundColor3 = Color3.fromRGB(51,51,51)
- F14.BorderSizePixel = 0
- local SetBindButton = Instance.new("TextButton",F14)
- SetBindButton.Name = "SetBindButton"
- SetBindButton.Size = UDim2.new(0.4,0,0.6,0)
- SetBindButton.Position = UDim2.new(0.5,0,0.2,0)
- SetBindButton.BackgroundTransparency = 0
- SetBindButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
- SetBindButton.BorderSizePixel = 0
- SetBindButton.BorderMode = "Inset"
- SetBindButton.Text = "Set Keybind"
- SetBindButton.TextScaled = true
- SetBindButton.Font = "SourceSans"
- SetBindButton.TextColor3 = Color3.new(1,1,1)
- SetBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
- SetBindButton.AutoButtonColor = false
- SetBindButton.MouseEnter:Connect(function()
- SetBindButton.BorderSizePixel = 1
- SetBindButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- SetBindButton.MouseLeave:Connect(function()
- SetBindButton.BorderSizePixel = 0
- SetBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
- SetBindButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
- end)
- SetBindButton.MouseButton1Down:Connect(function()
- SetBindButton.BorderSizePixel = 1
- SetBindButton.BorderColor3 = Color3.fromRGB(26,87,149)
- SetBindButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- SetBindButton.MouseButton1Up:Connect(function()
- SetBindButton.BorderSizePixel = 1
- SetBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
- SetBindButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- SetBindButton.MouseButton1Click:Connect(function()
- wait(0.05)
- SetBindActive = true
- end)
- local CmdBindActive = false
- local CurrentCmdBind = "Enum.KeyCode.End"
- CmdBindFrame.Name = "CmdBindFrame"
- CmdBindFrame.Size = UDim2.new(0,MainGui.AbsoluteSize.X*0.2,0.0,30)
- CmdBindFrame.Position = UDim2.new(0.3,0,0.3,0)
- CmdBindFrame.BackgroundColor3 = Color3.fromRGB(60,60,60)
- CmdBindFrame.BorderSizePixel = 0
- CmdBindFrame.Visible = false
- CmdBindFrame.Selectable = true
- CmdBindFrame.Draggable = true
- local CmdBindLogo = Instance.new("ImageLabel",CmdBindFrame)
- CmdBindLogo.Name = "ErigLogo"
- CmdBindLogo.Image = "rbxassetid://5028412551"
- CmdBindLogo.Size = UDim2.new(0,35,0,30)
- CmdBindLogo.BackgroundTransparency = 1
- local CmdBindTittle = Instance.new("TextLabel",CmdBindFrame)
- CmdBindTittle.Size = UDim2.new(0.2,0,0,30)
- CmdBindTittle.Position = UDim2.new(0.4,0,0,0)
- CmdBindTittle.TextColor3 = Color3.new(1,1,1)
- CmdBindTittle.Font = "SourceSans"
- CmdBindTittle.Name = "Tittle"
- CmdBindTittle.TextSize = 18
- CmdBindTittle.BackgroundTransparency = 1
- CmdBindTittle.Text = "Keybindings"
- local CmdBindExit = Instance.new("TextButton",CmdBindFrame)
- CmdBindExit.Size = UDim2.new(0,22,0,22)
- CmdBindExit.Position = UDim2.new(1,-22,0,0)
- CmdBindExit.BackgroundTransparency = 1
- CmdBindExit.BackgroundColor3 = Color3.fromRGB(52,69,85)
- CmdBindExit.BorderSizePixel = 1
- CmdBindExit.Name = "CmdBindExit"
- CmdBindExit.BorderMode = "Inset"
- CmdBindExit.Text = "X"
- CmdBindExit.TextSize = 15
- CmdBindExit.Font = "SourceSansSemibold"
- CmdBindExit.TextColor3 = Color3.new(1,1,1)
- CmdBindExit.BorderColor3 = Color3.fromRGB(145,145,145)
- CmdBindExit.AutoButtonColor = false
- CmdBindExit.MouseEnter:Connect(function()
- CmdBindExit.BackgroundTransparency = 0
- end)
- CmdBindExit.MouseLeave:Connect(function()
- CmdBindExit.BorderColor3 = Color3.fromRGB(145,145,145)
- CmdBindExit.BackgroundTransparency = 1
- end)
- CmdBindExit.MouseButton1Down:Connect(function()
- CmdBindExit.BorderColor3 = Color3.fromRGB(26,87,149)
- CmdBindExit.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- CmdBindExit.MouseButton1Up:Connect(function()
- CmdBindExit.BorderColor3 = Color3.fromRGB(145,145,145)
- CmdBindExit.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- CmdBindExit.MouseButton1Click:Connect(function()
- CmdBindFrame.Visible = false
- CmdBindFrame.Active = false
- end)
- local CmdBindFrame2 = Instance.new("Frame",CmdBindFrame)
- CmdBindFrame2.Name = "CmdBindFrame2"
- CmdBindFrame2.Size = UDim2.new(0,MainGui.AbsoluteSize.X*0.2,0,MainGui.AbsoluteSize.Y*0.2)
- CmdBindFrame2.Position = UDim2.new(0,0,1,0)
- CmdBindFrame2.BackgroundColor3 = Color3.fromRGB(51,51,51)
- CmdBindFrame2.BorderSizePixel = 0
- local CmdBindButton = Instance.new("TextButton",CmdBindFrame2)
- CmdBindButton.Name = "CmdBindButton"
- CmdBindButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
- CmdBindButton.BorderSizePixel = 0
- CmdBindButton.BorderMode = "Inset"
- CmdBindButton.Text = "Set Bind"
- CmdBindButton.TextSize = 20
- CmdBindButton.TextWrapped = true
- CmdBindButton.Font = "SourceSans"
- CmdBindButton.TextColor3 = Color3.new(1,1,1)
- CmdBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
- CmdBindButton.AutoButtonColor = false
- CmdBindButton.Size = UDim2.new(0.3,0,0.4,0)
- CmdBindButton.Position = UDim2.new(0.1,0,0.05,0)
- CmdBindButton.MouseEnter:Connect(function()
- CmdBindButton.BorderSizePixel = 1
- CmdBindButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- CmdBindButton.MouseLeave:Connect(function()
- CmdBindButton.BorderSizePixel = 0
- CmdBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
- CmdBindButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
- end)
- CmdBindButton.MouseButton1Down:Connect(function()
- CmdBindButton.BorderSizePixel = 1
- CmdBindButton.BorderColor3 = Color3.fromRGB(26,87,149)
- CmdBindButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- CmdBindButton.MouseButton1Up:Connect(function()
- CmdBindButton.BorderSizePixel = 1
- CmdBindButton.BorderColor3 = Color3.fromRGB(145,145,145)
- CmdBindButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- CmdBindButton.MouseButton1Click:Connect(function()
- wait(0.05)
- CmdBindActive = true
- end)
- local CmdBindLabel = Instance.new("TextLabel",CmdBindFrame2)
- CmdBindLabel.Size = UDim2.new(0.3,0,0.4,0)
- CmdBindLabel.Position = UDim2.new(0.1,0,0.55,0)
- CmdBindLabel.TextColor3 = Color3.new(1,1,1)
- CmdBindLabel.Font = "SourceSans"
- CmdBindLabel.Name = "CmdBindLabel"
- CmdBindLabel.TextSize = 20
- CmdBindLabel.TextScaled = true
- CmdBindLabel.BackgroundTransparency = 1
- CmdBindLabel.Text = "Click the button then type the command you want to bind."
- local CmdBindBox = Instance.new("TextBox",CmdBindFrame2)
- CmdBindBox.Name = "CmdBindBox"
- CmdBindBox.Position = UDim2.new(0.55,0,0.15,0)
- CmdBindBox.Size = UDim2.new(0.4,0,0.15,0)
- CmdBindBox.BackgroundColor3 = Color3.fromRGB(45,45,45)
- CmdBindBox.BorderSizePixel = 0
- CmdBindBox.PlaceholderColor3 = Color3.fromRGB(90,90,90)
- CmdBindBox.Text = ""
- CmdBindBox.PlaceholderText = "Command"
- CmdBindBox.TextScaled = true
- CmdBindBox.Font = "SourceSans"
- CmdBindBox.TextColor3 = Color3.new(1,1,1)
- CmdBindBox.TextScaled = true
- local CmdEnterButton = Instance.new("TextButton",CmdBindFrame2)
- CmdEnterButton.Name = "CmdEnterButton"
- CmdEnterButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
- CmdEnterButton.BorderSizePixel = 0
- CmdEnterButton.BorderMode = "Inset"
- CmdEnterButton.Text = "Enter"
- CmdEnterButton.TextSize = 20
- CmdEnterButton.TextWrapped = true
- CmdEnterButton.Font = "SourceSans"
- CmdEnterButton.TextColor3 = Color3.new(1,1,1)
- CmdEnterButton.BorderColor3 = Color3.fromRGB(145,145,145)
- CmdEnterButton.AutoButtonColor = false
- CmdEnterButton.Size = UDim2.new(0.2,0,0.15,0)
- CmdEnterButton.Position = UDim2.new(0.65,0,0.3,0)
- CmdEnterButton.MouseEnter:Connect(function()
- CmdEnterButton.BorderSizePixel = 1
- CmdEnterButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- CmdEnterButton.MouseLeave:Connect(function()
- CmdEnterButton.BorderSizePixel = 0
- CmdEnterButton.BorderColor3 = Color3.fromRGB(145,145,145)
- CmdEnterButton.BackgroundColor3 = Color3.fromRGB(60,60,60)
- end)
- CmdEnterButton.MouseButton1Down:Connect(function()
- CmdEnterButton.BorderSizePixel = 1
- CmdEnterButton.BorderColor3 = Color3.fromRGB(26,87,149)
- CmdEnterButton.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- CmdEnterButton.MouseButton1Up:Connect(function()
- CmdEnterButton.BorderSizePixel = 1
- CmdEnterButton.BorderColor3 = Color3.fromRGB(145,145,145)
- CmdEnterButton.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- CmdEnterButton.MouseButton1Click:Connect(function()
- table.insert(Saves.CmdBinds,#Saves.CmdBinds+1,{Cmd = CmdBindBox.Text, Key = CurrentCmdBind, Id = StringGen(6,true,true,true), Pos = #Saves.CmdBinds+1})
- SaveFile()
- CreateBinds()
- end)
- --Commands
- --Find Players
- function FindPlr (FName)
- local TFN = #FName
- for i, v in pairs(game.Players:GetChildren()) do
- local CNC = string.lower(v.Name)
- if string.sub(CNC,1,TFN) == FName then
- return v
- end
- end
- end
- --fly
- local flying = false
- local deb = true
- local ctrl = {f = 0, b = 0, l = 0, r = 0}
- local lastctrl = {f = 0, b = 0, l = 0, r = 0}
- local acceleration = 1
- local maxspeed = acceleration*50
- local speed = 0
- function Fly()
- local torso = plr.Character.Head
- local bg = Instance.new("BodyGyro", torso)
- bg.P = 9e4
- bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
- bg.cframe = torso.CFrame
- local bv = Instance.new("BodyVelocity", torso)
- bv.velocity = Vector3.new(0,0.1,0)
- bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
- repeat wait()
- plr.Character.Humanoid.PlatformStand = true
- if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
- speed = speed +acceleration+(speed/maxspeed)
- if speed > maxspeed then
- speed = maxspeed
- end
- elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
- speed = 0
- if speed < 0 then
- speed = 0
- end
- end
- if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
- 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
- lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
- elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
- 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
- else
- bv.velocity = Vector3.new(0,0.1,0)
- end
- bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
- until not flying
- ctrl = {f = 0, b = 0, l = 0, r = 0}
- lastctrl = {f = 0, b = 0, l = 0, r = 0}
- speed = 0
- bg:Destroy()
- bv:Destroy()
- plr.Character.Humanoid.PlatformStand = false
- end
- mouse.KeyDown:connect(function(key)
- if key:lower() == "w" then
- ctrl.f = 1
- elseif key:lower() == "s" then
- ctrl.b = -1
- elseif key:lower() == "a" then
- ctrl.l = -1
- elseif key:lower() == "d" then
- ctrl.r = 1
- end
- end)
- mouse.KeyUp:connect(function(key)
- if key:lower() == "w" then
- ctrl.f = 0
- elseif key:lower() == "s" then
- ctrl.b = 0
- elseif key:lower() == "a" then
- ctrl.l = 0
- elseif key:lower() == "d" then
- ctrl.r = 0
- end
- end)
- --Noclip
- local Clip = true
- local NoclipLoop = function()
- for i, v in pairs(plr.Character:GetDescendants()) do
- if Clip == false and on then
- if v:IsA("BasePart") and v.CanCollide == true then
- v.CanCollide = false
- end
- elseif Clip == true and on then
- if v:IsA("BasePart") and v.CanCollide == false then
- v.CanCollide = true
- end
- end
- end
- end
- Noclipping = game:GetService('RunService').Stepped:Connect(NoclipLoop)
- F6.CanvasSize = UDim2.new(0,F6Layout.AbsoluteContentSize.X,0,F6Layout.AbsoluteContentSize.Y)
- local JayBarDeb = false
- mouse.KeyDown:Connect(function(input)
- if input == Saves.JayPrefix then
- F1:TweenPosition(UDim2.new(0,0,0,MainGui.AbsoluteSize.Y*0.7),"Out","Linear",0.25,true)
- wait(0.1)
- JayBar:CaptureFocus()
- end
- end)
- local spam = false
- function ExecuteCmd(cmdstring)
- local jtex = string.lower(cmdstring)
- if JayBarDeb == false then
- wait(0.1)
- JayBarDeb = true
- if string.sub(jtex,1,3) == "fly" then
- JayBarDeb = false
- flying = true
- Fly()
- elseif string.sub(jtex,1,5) == "unfly" then
- JayBarDeb = false
- flying = false
- Notify("flying disabled.",20," ",22,2)
- elseif string.sub(jtex,1,7) == "fspeed " then
- JayBarDeb = false
- acceleration = string.sub(jtex,8)
- maxspeed = acceleration*50
- Notify("Fly speed changed to "..acceleration,20," ",22,2)
- elseif string.sub(jtex,1,3) == "fs " then
- JayBarDeb = false
- acceleration = string.sub(jtex,4)
- maxspeed = acceleration*50
- Notify("Fly speed changed to "..acceleration,20," ",22,2)
- elseif string.sub(jtex,1,6) == "noclip" then
- JayBarDeb = false
- Clip = false
- Notify("noclip enabled.",20," ",22,2)
- elseif string.sub(jtex,1,4) == "clip" then
- JayBarDeb = false
- Clip = true
- Notify("noclip disabled.",20," ",22,2)
- elseif string.sub(jtex,1,5) == "goto " then
- JayBarDeb = false
- local Splr = FindPlr(string.sub(jtex,6))
- plr.Character.Humanoid.Jump = true
- plr.Character:SetPrimaryPartCFrame(Splr.Character.PrimaryPart.CFrame +Vector3.new(3,2,0))
- Notify("Teleported to "..Splr.Name,20," ",22,2)
- elseif string.sub(jtex,1,3) == "tp " then
- JayBarDeb = false
- local Splr = FindPlr(string.sub(jtex,4))
- plr.Character.Humanoid.Jump = true
- plr.Character:SetPrimaryPartCFrame(Splr.Character.PrimaryPart.CFrame +Vector3.new(3,2,0))
- Notify("Teleported to "..Splr.Name,20," ",22,2)
- elseif string.sub(jtex,1,4) == "nude" or string.sub(jtex,1,5) == "naked" then
- JayBarDeb = false
- local Pants = plr.Character:FindFirstChildWhichIsA("Pants")
- if Pants == nil then
- else
- Pants:Destroy()
- end
- local Shirt = plr.Character:FindFirstChildWhichIsA("Shirt")
- if Shirt == nil then
- else
- Shirt:Destroy()
- end
- Notify("Removed clothing.",20," ",22,2)
- elseif string.sub(jtex,1,14) == "disableprompts" then
- JayBarDeb = false
- CoreGui.PurchasePromptApp:Destroy()
- Notify("Removed purchase prompts.",20," ",22,2)
- elseif string.sub(jtex,1,3) == "jp " then
- JayBarDeb = false
- plr.Character.Humanoid.JumpPower = (string.sub(jtex, 4))
- Notify("JumpPower is "..string.sub(jtex, 4),20," ",22,2)
- elseif string.sub(jtex,1,10) == "jumppower " then
- JayBarDeb = false
- plr.Character.Humanoid.JumpPower = (string.sub(jtex, 11))
- Notify("JumpPower is "..string.sub(jtex, 11),20," ",22,2)
- elseif string.sub(jtex,1,6) == "speed " then
- JayBarDeb = false
- plr.Character.Humanoid.WalkSpeed = (string.sub(jtex, 7))
- Notify("WalkSpeed is "..string.sub(jtex, 7),20," ",22,2)
- elseif string.sub(jtex,1,10) == "walkspeed " then
- JayBarDeb = false
- plr.Character.Humanoid.WalkSpeed = (string.sub(jtex, 11))
- Notify("WalkSpeed is "..string.sub(jtex, 11),20," ",22,2)
- elseif string.sub(jtex,1,3) == "ws " then
- JayBarDeb = false
- plr.Character.Humanoid.WalkSpeed = (string.sub(jtex, 4))
- Notify("WalkSpeed is "..string.sub(jtex, 4),20," ",22,2)
- elseif string.sub(jtex,1,3) == "dex" or string.sub(jtex,1,8) == "explorer"then
- JayBarDeb = false
- loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
- elseif string.sub(jtex,1,5) == "spam " then
- JayBarDeb = false
- spam = true
- repeat game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(string.sub(cmdstring,6), "All") wait(2) until
- spam == false
- elseif string.sub(jtex,1,6) == "unspam" then
- JayBarDeb = false
- spam = false
- elseif string.sub(jtex,1,5) == "chat " then
- JayBarDeb = false
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(string.sub(cmdstring,6), "All")
- elseif string.sub(jtex,1,2) == "rj" or string.sub(jtex,1,6) == "rejoin" then
- JayBarDeb = false
- game:GetService('TeleportService'):Teleport(game.PlaceId)
- Notify("Rejoining your game, please wait.",20,"Rejoining",22,2)
- elseif string.sub(jtex,1,8) == "antiidle" or string.sub(jtex,1,7) == "antiafk" then
- JayBarDeb = false
- pcall(function()
- for i,v in pairs(getconnections(plr.Idled)) do
- v:Disable()
- end
- end)
- Notify("Antiafk enabled, credits to Infinite Yelds.",20,"Antiafk Enabled",22,2)
- elseif string.sub(jtex,1,8) == "execute " then
- JayBarDeb = false
- loadstring(string.sub(cmdstring,9))()
- Notify("Executed Code.",20,"Executed",22,2)
- elseif string.sub(jtex,1,5) == "exec " then
- JayBarDeb = false
- loadstring(string.sub(cmdstring,6))()
- Notify("Executed Code.",20,"Executed",22,2)
- elseif string.sub(jtex,1,7) == "creeper" or string.sub(jtex,1,5) == "creep" then
- JayBarDeb = false
- if plr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
- plr.Character.Head:FindFirstChildOfClass("SpecialMesh"):Destroy()
- plr.Character.LeftUpperArm:Destroy()
- plr.Character.RightUpperArm:Destroy()
- for i,v in pairs(plr.Character.Humanoid:GetAccessories()) do
- v:Destroy()
- end
- else
- plr.Character.Head:FindFirstChildOfClass("SpecialMesh"):Destroy()
- plr.Character["Left Arm"]:Destroy()
- plr.Character["Right Arm"]:Destroy()
- for i,v in pairs(plr.Character.Humanoid:GetAccessories()) do
- v:Destroy()
- end
- end
- Notify("You're now a creeper.",20," ",22,2)
- elseif string.sub(jtex,1,10) == "removefade" then
- JayBarDeb = false
- if game.PlaceId == 155615604 then
- plr.PlayerGui.Home.fadeFrame:Destroy()
- end
- Notify("Fade frame removed.",20," ",22,2)
- elseif string.sub(jtex,1,5) == "view " then
- JayBarDeb = false
- local Splr = FindPlr(string.sub(jtex,6))
- workspace.CurrentCamera.CameraSubject = Splr.Character
- Notify("Viewing "..Splr.Name,20," ",22,2)
- elseif string.sub(jtex,1,6) == "unview" then
- JayBarDeb = false
- workspace.CurrentCamera.CameraSubject = plr.Character
- Notify("Unviewed.",20," ",22,2)
- elseif string.sub(jtex,1,3) == "sit" then
- JayBarDeb = false
- plr.Character.Humanoid.Sit = true
- Notify("You're sitting.",20," ",22,2)
- elseif string.sub(jtex,1,5) == "unsit" then
- JayBarDeb = false
- plr.Character.Humanoid.Sit = false
- Notify("You're not sitting.",20," ",22,2)
- elseif string.sub(jtex,1,8) == "maxzoom " then
- JayBarDeb = false
- plr.CameraMaxZoomDistance = string.sub(jtex,9)
- elseif string.sub(jtex,1,3) == "mz " then
- JayBarDeb = false
- plr.CameraMaxZoomDistance = string.sub(jtex,4)
- elseif string.sub(jtex,1,17) == "unlockfirstperson" or string.sub(jtex,1,9) == "uncamlock" then
- JayBarDeb = false
- plr.CameraMode = Enum.CameraMode.Classic
- Notify("Unlocked first person.",20," ",22,2)
- elseif string.sub(jtex,1,11) == "firstperson" or string.sub(jtex,1,7) == "camlock" then
- JayBarDeb = false
- plr.CameraMode = Enum.CameraMode.LockFirstPerson
- Notify("First person enabled.",20," ",22,2)
- elseif string.sub(jtex,1,4) == "save" or string.sub(jtex,1,8) == "savefile" then
- JayBarDeb = false
- SaveFile()
- Notify("Saved.",20," ",22,2)
- elseif string.sub(jtex,1,5) == "reset" then
- JayBarDeb = false
- plr.Character.Humanoid.Health = 0
- elseif string.sub(jtex,1,7) == "refresh" then
- JayBarDeb = false
- local curpos = plr.Character.PrimaryPart.Position
- plr.Character.Humanoid.Health = 0
- plr.Character:BreakJoints()
- for i,v in pairs(plr.Character:GetChildren()) do
- if v:IsA("BasePart") then
- v:Destroy()
- end
- end
- repeat wait() until plr.Character ~= nil and plr.Character:FindFirstChild('HumanoidRootPart')
- wait(0.1)
- plr.Character:MoveTo(curpos)
- elseif string.sub(jtex,1,7) == "destroy" or string.sub(jtex,1,6) == "remove" then
- JayBarDeb = false
- SaveFile()
- wait(0.1)
- MainGui:Destroy()
- on = false
- script:Destroy()
- end
- JayBarDeb = false
- JayBar.Text = ""
- else
- print("no")
- end
- end
- uis.InputBegan:Connect(function(input)
- if on then
- local tempkey = tostring(input.KeyCode)
- local stringtemp = string.split(tempkey,".")[3]
- if CmdBindActive then
- CmdBindButton.Text = stringtemp
- CurrentCmdBind = tempkey
- CmdBindActive = false
- end
- if SetBindActive then
- if F13Set == "tp" then
- Saves.ClickToTeleport.Key = tempkey
- Saves.ClickToTeleport.Abreviation = stringtemp
- C2TP2.Text = "Button set to teleport is "..stringtemp
- SetBindButton.Text = stringtemp
- SetBindActive = false
- SaveFile()
- elseif F13Set == "sprint" then
- Saves.Sprint.Key = tempkey
- Saves.Sprint.Abreviation = stringtemp
- Sprint2.Text = "Button set to sprint is "..stringtemp
- SetBindButton.Text = stringtemp
- SetBindActive = false
- SaveFile()
- end
- end
- if Saves.Sprint.Key ~= nil then
- if input.KeyCode == Enum.KeyCode[string.sub(Saves.Sprint.Key,14)] and Saves.Sprint.Toggle then
- pcall(function()
- plr.Character.Humanoid.WalkSpeed = SprintWS.Text
- end)
- end
- end
- for i,v in pairs(Saves.CmdBinds) do
- if v.Key == tempkey then
- ExecuteCmd(v.Cmd)
- end
- end
- end
- end)
- uis.InputEnded:Connect(function(input)
- if Saves.Sprint.Key ~= nil then
- if input.KeyCode == Enum.KeyCode[string.sub(Saves.Sprint.Key,14)] and Saves.Sprint.Toggle then
- plr.Character.Humanoid.WalkSpeed = 16
- end
- end
- end)
- mouse.Button1Down:Connect(function()
- if Saves.ClickToTeleport.Key ~= nil then
- if Saves.ClickToTeleport.Toggle and on then
- if uis:IsKeyDown(Enum.KeyCode[string.sub(Saves.ClickToTeleport.Key,14)]) then
- local char = plr.Character
- char.PrimaryPart.CFrame = mouse.Hit + Vector3.new(0,8,0)
- end
- end
- end
- end)
- local SetBindLabel = Instance.new("TextLabel",F14)
- SetBindLabel.Name = "SetBindButton"
- SetBindLabel.Size = UDim2.new(0.4,0,0.6,0)
- SetBindLabel.Position = UDim2.new(0.05,0,0.2,0)
- SetBindLabel.BackgroundTransparency = 1
- SetBindLabel.BorderMode = "Inset"
- SetBindLabel.Text = "Click the button to the right then the button you want to bind."
- SetBindLabel.TextScaled = true
- SetBindLabel.Font = "SourceSans"
- SetBindLabel.TextColor3 = Color3.new(1,1,1)
- function CreateGameSideButton(name,text,size,wrapped)
- local Button = Instance.new("TextButton",F11)
- Button.Name = name
- Button.BackgroundColor3 = Color3.fromRGB(60,60,60)
- Button.BorderSizePixel = 0
- Button.BorderMode = "Inset"
- Button.Text = text
- Button.TextXAlignment = "Right"
- Button.TextSize = size
- Button.TextWrapped = wrapped
- Button.Font = "SourceSans"
- Button.TextColor3 = Color3.new(1,1,1)
- Button.BorderColor3 = Color3.fromRGB(145,145,145)
- Button.AutoButtonColor = false
- Button.Size = UDim2.new(0.95,0,0,F11.AbsoluteSize.Y*0.1)
- Button.MouseEnter:Connect(function()
- Button.BorderSizePixel = 1
- Button.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- Button.MouseLeave:Connect(function()
- Button.BorderSizePixel = 0
- Button.BorderColor3 = Color3.fromRGB(145,145,145)
- Button.BackgroundColor3 = Color3.fromRGB(60,60,60)
- end)
- Button.MouseButton1Down:Connect(function()
- Button.BorderSizePixel = 1
- Button.BorderColor3 = Color3.fromRGB(26,87,149)
- Button.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- Button.MouseButton1Up:Connect(function()
- Button.BorderSizePixel = 1
- Button.BorderColor3 = Color3.fromRGB(145,145,145)
- Button.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- if Button.TextFits == false then
- Button.TextWrapped = true
- end
- return Button
- end
- local F11B1 = CreateGameSideButton("6DHGUIsButton","Da Hood Scripts",15,false)
- F11B1.MouseButton1Click:Connect(function()
- F6.Visible = false
- F6.Active = false
- F8.Visible = true
- F8.Active = true
- F7.Visible = false
- F7.Active = false
- F9.Visible = false
- F9.Active = false
- F12.Visible = false
- F12.Active = false
- end)
- local F11B2 = CreateGameSideButton("5PLRSButton","Prison Life & Redwood Scripts",15,false)
- F11B2.MouseButton1Click:Connect(function()
- F6.Visible = false
- F6.Active = false
- F8.Visible = false
- F8.Active = false
- F7.Visible = true
- F7.Active = true
- F9.Visible = false
- F9.Active = false
- F12.Visible = false
- F12.Active = false
- end)
- local F11B3 = CreateGameSideButton("2ScrpitsButton","Scrpits",15,false)
- F11B3.MouseButton1Click:Connect(function()
- F6.Visible = true
- F6.Active = true
- F7.Visible = false
- F7.Active = false
- F8.Visible = false
- F8.Active = false
- F9.Visible = false
- F9.Active = false
- F12.Visible = false
- F12.Active = false
- end)
- local F11B4 = CreateGameSideButton("3AnimsButton","Animations",15,false)
- F11B4.MouseButton1Click:Connect(function()
- F6.Visible = false
- F6.Active = false
- F8.Visible = false
- F8.Active = false
- F7.Visible = false
- F7.Active = false
- F9.Visible = true
- F9.Active = true
- F12.Visible = false
- F12.Active = false
- end)
- local F11B5 = CreateGameSideButton("1Misc","Control Panel",15,false)
- F11B5.MouseButton1Click:Connect(function()
- F6.Visible = false
- F6.Active = false
- F8.Visible = false
- F8.Active = false
- F7.Visible = false
- F7.Active = false
- F9.Visible = false
- F9.Active = false
- F12.Visible = true
- F12.Active = true
- end)
- F11.CanvasSize = UDim2.new(0,F11Layout.AbsoluteContentSize.X,0,F11Layout.AbsoluteContentSize.Y)
- function CreateNormButton(name,text,size,scaled,parent)
- local Button = Instance.new("TextButton",parent)
- Button.Name = name
- Button.BackgroundColor3 = Color3.fromRGB(45,45,45)
- Button.BorderSizePixel = 0
- Button.BorderMode = "Inset"
- Button.Text = text
- Button.TextSize = size
- Button.TextScaled = scaled
- Button.Font = "SourceSans"
- Button.TextColor3 = Color3.new(1,1,1)
- Button.BorderColor3 = Color3.fromRGB(145,145,145)
- Button.AutoButtonColor = false
- Button.MouseEnter:Connect(function()
- Button.BorderSizePixel = 1
- Button.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- Button.MouseLeave:Connect(function()
- Button.BorderSizePixel = 0
- Button.BorderColor3 = Color3.fromRGB(145,145,145)
- Button.BackgroundColor3 = Color3.fromRGB(45,45,45)
- end)
- Button.MouseButton1Down:Connect(function()
- Button.BorderSizePixel = 1
- Button.BorderColor3 = Color3.fromRGB(26,87,149)
- Button.BackgroundColor3 = Color3.fromRGB(45,77,109)
- end)
- Button.MouseButton1Up:Connect(function()
- Button.BorderSizePixel = 1
- Button.BorderColor3 = Color3.fromRGB(145,145,145)
- Button.BackgroundColor3 = Color3.fromRGB(52,69,85)
- end)
- if Button.TextFits == false then
- Button.TextScaled = true
- end
- return Button
- end
- local F9B1 = CreateNormButton("ZR6Button","Energize R6",20,false,F9)
- F9B1.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet("https://pastebin.com/raw/i0QcivBF", true))()
- end)
- local F9B2 = CreateNormButton("ToyButton","Toy",20,false,F9)
- F9B2.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=782843869"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=782846423"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=782841498"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=782845736"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=782847020"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=782842708"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=782844582"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=782845186"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=782843345"
- end)
- local F9B3 = CreateNormButton("PirateButton","Pirate",20,false,F9)
- F9B3.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=750779899"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=750780242"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=750781874"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=750782770"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=750782230"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=750783738"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=750784579"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=750785176"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=750785693"
- end)
- local F9B4 = CreateNormButton("KnightButton","Knight",20,false,F9)
- F9B4.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=658360781"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=657600338"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=657595757"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=657568135"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=658409194"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=657564596"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=657560551"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=657557095"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=657552124"
- end)
- local F9B5 = CreateNormButton("AstronautButton","Astronaut",20,false,F9)
- F9B5.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=891609353"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=891617961"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=891621366"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=891633237"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=891627522"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=891636393"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=891639666"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=891663592"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=891636393"
- end)
- local F9B6 = CreateNormButton("VampireButton","Vampire",20,false,F9)
- F9B6.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083439238"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083443587"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083445855"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083450166"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083455352"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083462077"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=1083464683"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=1083467779"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083473930"
- end)
- local F9B7 = CreateNormButton("RobotButton","Robot",20,false,F9)
- F9B7.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616086039"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616087089"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616088211"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616089559"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616090535"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616091570"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616092998"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616094091"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616095330"
- end)
- local F9B8 = CreateNormButton("LevitaitionButton","Levitaition",20,false,F9)
- F9B8.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616003713"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616005863"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616006778"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616008087"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616008936"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616010382"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616011509"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616012453"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616013216"
- end)
- local F9B9 = CreateNormButton("BubblyButton","Bubbly",20,false,F9)
- F9B9.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=909997997"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=910001910"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=910004836"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=910009958"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=910016857"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=910025107"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=910028158"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=910030921"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=910034870"
- end)
- local F9B10 = CreateNormButton("WerewolfButton","Werewolf",20,false,F9)
- F9B10.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083182000"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083189019"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083195517"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083214717"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083218792"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083216690"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=1083222527"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=1083225406"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083178339"
- end)
- local F9B11 = CreateNormButton("StylishButton","Stylish",20,false,F9)
- F9B11.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616133594"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616134815"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616136790"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616138447"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616139451"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616140816"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616143378"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616144772"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616146177"
- end)
- local F9B12 = CreateNormButton("MageButton", "Mage",20,false,F9)
- F9B12.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=707826056"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=707829716"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=707742142"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=707855907"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=707853694"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=707861613"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=707876443"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=707894699"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=707897309"
- end)
- local F9B13 = CreateNormButton("CartoonyButton", "Cartoony",20,false,F9)
- F9B13.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=742636889"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=742637151"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=742637544"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=742638445"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=742637942"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=742638842"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=742639220"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=742639812"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=742640026"
- end)
- local F9B14 = CreateNormButton("YZombieButton","Zombie",20,false,F9)
- F9B14.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616156119"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616157476"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616158929"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616160636"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616161997"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616163682"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616165109"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616166655"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616168032"
- end)
- local F9B15 = CreateNormButton("SuperheroButton","Superhero",20,false,F9)
- F9B15.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616104706"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616108001"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616111295"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616113536"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616115533"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616117076"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616119360"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616120861"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616122287"
- end)
- local F9B16 = CreateNormButton("NinjaSButton","Ninja",20,false,F9)
- F9B16.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=656114359"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=656115606"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=656117400"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=656118341"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=656117878"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=656118852"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=656119721"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=656121397"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=656121766"
- end)
- local F9B17 = CreateNormButton("ElderButton","Elder",20,false,F9)
- F9B17.MouseButton1Click:Connect(function()
- local Char = plr.Character
- Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=845392038"
- Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=845396048"
- Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=845397899"
- Char.Animate.idle.Animation1.Weight.Value = "9"
- Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=845400520"
- Char.Animate.idle.Animation2.Weight.Value = "1"
- Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=845398858"
- Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=845386501"
- Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=845401742"
- Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=845403127"
- Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=845403856"
- end)
- F9.CanvasSize = UDim2.new(0,F9Layout.AbsoluteContentSize.X,0,F9Layout.AbsoluteContentSize.Y)
- local F8B1 = CreateNormButton("MySButton","Mythitem's",20,false,F8)
- F8B1.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/K1X29Gf1'),true))()
- end)
- local F8B2 = CreateNormButton("EvonButton","Evon's",20,false,F8)
- F8B2.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/GFgsdxM9'),true))()
- end)
- local F8B3 = CreateNormButton("PostmanButton","Postman Pat's",20,false,F8)
- F8B3.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/ZrLSX3BG'),true))()
- end)
- local F8B4 = CreateNormButton("ChonkButton","Chonky knife",20,false,F8)
- F8B4.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/tAY15hVY'),true))()
- end)
- F8.CanvasSize = UDim2.new(0,F8Layout.AbsoluteContentSize.X,0,F8Layout.AbsoluteContentSize.Y)
- local F7B1 = CreateNormButton("AmGUIButton","Amokah's GUI",20,false,F7)
- F7B1.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/JS5SYqaU'),true))()
- end)
- local F7B2 = CreateNormButton("PBButton","Prison Breaker",20,false,F7)
- F7B2.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/KA5rd9tc'),true))()
- end)
- local F7B3 = CreateNormButton("RPButton","Redwood Prison",20,false,F7)
- F7B3.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/2QQAMVxU'),true))()
- end)
- F7.CanvasSize = UDim2.new(0,F7Layout.AbsoluteContentSize.X,0,F7Layout.AbsoluteContentSize.Y)
- local F6B1 = CreateNormButton("HatFlingButton","Hat Fling",20,false,F6)
- F6B1.MouseButton1Click:Connect(function()
- loadstring(game:GetObjects("rbxassetid://4732616720")[1].Source)()
- end)
- local F6B2 = CreateNormButton("JAButton","Jay Admin",20,false,F6)
- F6B2.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/zPtNSmuZ'),true))()
- end)
- local F6B3 = CreateNormButton("IYButton","Infinite Yields",20,false,F6)
- F6B3.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
- end)
- local F6B4 = CreateNormButton("CtPButton","Click to Teleport",20,false,F6)
- F6B4.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/rUecatt5'),true))()
- end)
- local F6B5 = CreateNormButton("FEButton","FE Checker",20,false,F6)
- F6B5.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/YwM006C0'),true))()
- end)
- local F6B6 = CreateNormButton("SpinButton","Spin GUI",20,false,F6)
- F6B6.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/zHxNWgY7'),true))()
- end)
- local F6B7 = CreateNormButton("DexButton","Dex",20,false,F6)
- F6B7.MouseButton1Click:Connect(function()
- loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
- end)
- local F6B8 = CreateNormButton("RevizButton","Reviz",20,false,F6)
- F6B8.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/R4GL3fvY'),true))()
- end)
- local F6B9 = CreateNormButton("BAFButton","Bloxburg Auto Farm",20,true,F6)
- F6B9.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/Lx1amH3H'),true))()
- end)
- local F6B10 = CreateNormButton("VMM2Button","Vynixu's MM2",20,false,F6)
- F6B10.MouseButton1Click:Connect(function()
- loadstring(game:GetObjects("rbxassetid://4001118261")[1].Source)()
- end)
- local F6B11 = CreateNormButton("ERIGV1Button","ERIG v1",20,false,F6)
- F6B11.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/JWXG3JdU'),true))()
- end)
- local F6B12 = CreateNormButton("ERIGV2Button","ERIG v2",20,false,F6)
- F6B12.MouseButton1Click:Connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/XyJD2HwP'),true))()
- end)
- JayBar.FocusLost:Connect(function()
- F1:TweenPosition(UDim2.new(0,0,1,-30),"Out","Linear",0.25,true)
- ExecuteCmd(JayBar.Text)
- end)
- function ReadFile()
- pcall(function()
- local LoadedFile = HTTPService:JSONDecode(readfile("ERIG Saves.erig"))
- if LoadedFile.ClickToTeleport.Key ~= nil then Saves.ClickToTeleport.Key = LoadedFile.ClickToTeleport.Key end
- if LoadedFile.JayPrefix ~= nil then Saves.JayPrefix = LoadedFile.JayPrefix
- JayBar.PlaceholderText = "Press "..Saves.JayPrefix.." or click to use command bar."
- JayPreChange.Text = LoadedFile.JayPrefix
- end
- if LoadedFile.ClickToTeleport.Abreviation ~= nil then Saves.ClickToTeleport.Abreviation = LoadedFile.ClickToTeleport.Abreviation
- C2TP2.Text = "Button set to teleport is "..Saves.ClickToTeleport.Abreviation
- end
- if LoadedFile.ClickToTeleport.Toggle ~= nil then Saves.ClickToTeleport.Toggle = LoadedFile.ClickToTeleport.Toggle
- if Saves.ClickToTeleport.Toggle == true then C2TPToggleButton.Text = "X"
- end
- end
- if LoadedFile.Sprint.Key ~= nil then Saves.Sprint.Key = LoadedFile.Sprint.Key end
- if LoadedFile.Sprint.Abreviation ~= nil then Saves.Sprint.Abreviation = LoadedFile.Sprint.Abreviation
- Sprint2.Text = "Button set to sprint is "..Saves.Sprint.Abreviation
- end
- if LoadedFile.Sprint.WalkSpeed ~= nil then Saves.Sprint.WalkSpeed = LoadedFile.Sprint.WalkSpeed
- SprintWS.Text = LoadedFile.Sprint.WalkSpeed
- end
- if LoadedFile.Sprint.Toggle ~= nil then Saves.Sprint.Toggle = LoadedFile.Sprint.Toggle
- if Saves.Sprint.Toggle == true then SprintToggleButton.Text = "X"
- end
- end
- if LoadedFile.CmdBinds ~= nil then Saves.CmdBinds = LoadedFile.CmdBinds
- CreateBinds()
- end
- end)
- end
- ReadFile()
- Notify("ERIG - v"..Version.." successfully loaded! File Saves may be lost due to updates.",20,"Loaded",20,10)
- --local plr = game.Players.LocalPlayer
- --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