--[[ Gui2Lua™ 10zOfficial Version 1.0.0 ]] -- Instances local ScreenGui = Instance.new("ScreenGui") local ScrollingFrame = Instance.new("ScrollingFrame") local CtrlClickDelete = Instance.new("TextButton") local ShiftClickTP = Instance.new("TextButton") local InfiniteJump = Instance.new("TextButton") local Btools = Instance.new("TextButton") local TextLabel = Instance.new("TextLabel") local MurderMystery = Instance.new("TextButton") local Frame = Instance.new("Frame") local TextLabel_2 = Instance.new("TextLabel") -- Properties ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScrollingFrame.Name = "ScrollingFrame" ScrollingFrame.Parent = ScreenGui ScrollingFrame.Active = true ScrollingFrame.BackgroundColor3 = Color3.new(1, 1, 1) ScrollingFrame.Position = UDim2.new(0.213968933, 0, 0.168674648, 0) ScrollingFrame.Size = UDim2.new(0, 479, 0, 291) ScrollingFrame.Draggable = true ScrollingFrame.Active = true ScrollingFrame.Selectable = true CtrlClickDelete.Name = "CtrlClickDelete" CtrlClickDelete.Parent = ScrollingFrame CtrlClickDelete.BackgroundColor3 = Color3.new(1, 1, 1) CtrlClickDelete.Position = UDim2.new(0.0146137783, 0, 0.0527301282, 0) CtrlClickDelete.Size = UDim2.new(0, 102, 0, 68) CtrlClickDelete.Font = Enum.Font.SourceSans CtrlClickDelete.Text = "CtrlClickDelete" CtrlClickDelete.TextColor3 = Color3.new(0, 0, 0) CtrlClickDelete.TextSize = 14 CtrlClickDelete.MouseButton1Down:connect(function() local Plr = game:GetService("Players").LocalPlayer local Mouse = Plr:GetMouse() Mouse.Button1Down:connect(function() if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end if not Mouse.Target then return end Mouse.Target:Destroy() end) end) ShiftClickTP.Name = "ShiftClickTP" ShiftClickTP.Parent = ScrollingFrame ShiftClickTP.BackgroundColor3 = Color3.new(1, 1, 1) ShiftClickTP.Position = UDim2.new(0.265135705, 0, 0.0527301282, 0) ShiftClickTP.Size = UDim2.new(0, 102, 0, 68) ShiftClickTP.Font = Enum.Font.SourceSans ShiftClickTP.Text = "ShiftClickTP" ShiftClickTP.TextColor3 = Color3.new(0, 0, 0) ShiftClickTP.TextSize = 14 ShiftClickTP.MouseButton1Down:connect(function() local Plr = game:GetService("Players").LocalPlayer local Mouse = Plr:GetMouse() Mouse.Button1Down:connect(function() if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftShift) then return end if not Mouse.Target then return end Plr.Character:MoveTo(Mouse.Hit.p) end) end) InfiniteJump.Name = "Infinite Jump" InfiniteJump.Parent = ScrollingFrame InfiniteJump.BackgroundColor3 = Color3.new(1, 1, 1) InfiniteJump.Position = UDim2.new(0.511482239, 0, 0.0527301282, 0) InfiniteJump.Size = UDim2.new(0, 102, 0, 68) InfiniteJump.Font = Enum.Font.SourceSans InfiniteJump.Text = "Infinite Jump" InfiniteJump.TextColor3 = Color3.new(0, 0, 0) InfiniteJump.TextSize = 14 InfiniteJump.MouseButton1Down:connect(function() --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] -- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local main = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local Frame = Instance.new("Frame") local INFJUMP = Instance.new("TextButton") local TextLabel_2 = Instance.new("TextLabel") --Properties: ScreenGui.Parent = game.CoreGui main.Name = "main" main.Parent = ScreenGui main.Active = true main.BackgroundColor3 = Color3.fromRGB(255, 255, 255) main.BorderSizePixel = 0 main.Position = UDim2.new(0.119258665, 0, 0, 0) main.Size = UDim2.new(0, 146, 0, 28) main.Active = true main.Draggable = true TextLabel.Parent = main TextLabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38) TextLabel.BorderSizePixel = 0 TextLabel.Size = UDim2.new(0, 146, 0, 28) TextLabel.Font = Enum.Font.SciFi TextLabel.Text = "Misc" TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.TextSize = 17.000 TextLabel.TextWrapped = true Frame.Parent = main Frame.BackgroundColor3 = Color3.fromRGB(86, 86, 86) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0, 0, 1, 0) Frame.Size = UDim2.new(0, 146, 0, 61) INFJUMP.Name = "INFJUMP" INFJUMP.Parent = main INFJUMP.BackgroundColor3 = Color3.fromRGB(255, 255, 255) INFJUMP.BorderSizePixel = 0 INFJUMP.Position = UDim2.new(0.794520497, 0, 1.6785717, 0) INFJUMP.Size = UDim2.new(0, 21, 0, 21) INFJUMP.Font = Enum.Font.SourceSans INFJUMP.Text = "" INFJUMP.TextColor3 = Color3.fromRGB(0, 0, 0) INFJUMP.TextSize = 14.000 INFJUMP.MouseButton1Down:connect(function() local Player = game:GetService'Players'.LocalPlayer; local UIS = game:GetService'UserInputService'; _G.JumpHeight = 50; function Action(Object, Function) if Object ~= nil then Function(Object); end end UIS.InputBegan:connect(function(UserInput) if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then Action(Player.Character.Humanoid, function(self) if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then Action(self.Parent.HumanoidRootPart, function(self) self.Velocity = Vector3.new(0, _G.JumpHeight, 0); end) end end) end end) end) TextLabel_2.Parent = main TextLabel_2.BackgroundColor3 = Color3.fromRGB(38, 38, 38) TextLabel_2.BorderSizePixel = 0 TextLabel_2.Position = UDim2.new(0.0547945201, 0, 1.57142854, 0) TextLabel_2.Size = UDim2.new(0, 94, 0, 28) TextLabel_2.Font = Enum.Font.SciFi TextLabel_2.Text = "Inf jump" TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel_2.TextSize = 17.000 TextLabel_2.TextWrapped = true -- Scripts: local function TKDWQ_fake_script() -- INFJUMP.LocalScript local script = Instance.new('LocalScript', INFJUMP) function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end counter = 0 while wait(0.1)do script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1) counter = counter + 0.01 end end coroutine.wrap(TKDWQ_fake_script)() end) Btools.Name = "Btools" Btools.Parent = ScrollingFrame Btools.BackgroundColor3 = Color3.new(1, 1, 1) Btools.Position = UDim2.new(0.745302737, 0, 0.0527301282, 0) Btools.Size = UDim2.new(0, 102, 0, 68) Btools.Font = Enum.Font.SourceSans Btools.Text = "Btools" Btools.TextColor3 = Color3.new(0, 0, 0) Btools.TextSize = 14 Btools.MouseButton1Down:connect(function() loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/BTools.txt"))() end) TextLabel.Parent = ScrollingFrame TextLabel.BackgroundColor3 = Color3.new(1, 1, 1) TextLabel.BorderSizePixel = 3 TextLabel.Position = UDim2.new(0, 0, 0.949405909, 0) TextLabel.Size = UDim2.new(0, 466, 0, 50) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "Rüzgaar#8743" TextLabel.TextColor3 = Color3.new(0, 0, 0) TextLabel.TextSize = 34 MurderMystery.Name = "Murder Mystery" MurderMystery.Parent = ScrollingFrame MurderMystery.BackgroundColor3 = Color3.new(1, 1, 1) MurderMystery.Position = UDim2.new(0.027139876, 0, 0.819524109, 0) MurderMystery.Size = UDim2.new(0, 114, 0, 106) MurderMystery.Font = Enum.Font.SourceSans MurderMystery.Text = "MurdeyMystery2" MurderMystery.TextColor3 = Color3.new(0, 0, 0) MurderMystery.TextSize = 14 MurderMystery.MouseButton1Down:connect(function() loadstring(game:GetObjects("rbxassetid://4001118261")[1].Source)() end) Frame.Parent = ScrollingFrame Frame.BackgroundColor3 = Color3.new(1, 1, 1) Frame.Size = UDim2.new(0, 465, 0, 38) TextLabel_2.Parent = Frame TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1) TextLabel_2.Size = UDim2.new(0, 466, 0, 39) TextLabel_2.Font = Enum.Font.RobotoCondensed TextLabel_2.Text = "Ruzgar's Custom Gui" TextLabel_2.TextColor3 = Color3.new(0, 0, 0) TextLabel_2.TextSize = 41