Version / Update: v1.0.0
- Download / Script Link
- local Players=game:GetService("Players")local UserInputService=game:GetService("UserInputService")local RunService=game:GetService("RunService")local player=Players.LocalPlayer local camera=workspace.CurrentCamera local connections={}local screenGui=Instance.new("ScreenGui")screenGui.Name="JisioniaHub"screenGui.ResetOnSpawn=false screenGui.Parent=player:WaitForChild("PlayerGui")local mainFrame=Instance.new("Frame")mainFrame.Size=UDim2.new(0,260,0,230)mainFrame.Position=UDim2.new(0,60,0,100)mainFrame.BackgroundColor3=Color3.fromRGB(32,32,38)mainFrame.BorderSizePixel=0 mainFrame.Active=true mainFrame.Draggable=true mainFrame.Parent=screenGui local title=Instance.new("TextLabel")title.Parent=mainFrame title.Size=UDim2.new(1,0,0,40)title.BackgroundTransparency=1 title.Text="Jisionia Hub"title.Font=Enum.Font.GothamBlack title.TextSize=28 title.TextColor3=Color3.fromRGB(255,80,80)title.TextXAlignment=Enum.TextXAlignment.Left title.Position=UDim2.new(0,16,0,0)local credit=Instance.new("TextLabel")credit.Parent=mainFrame credit.Size=UDim2.new(1,0,0,18)credit.Position=UDim2.new(0,16,0,37)credit.Text="Made by Jisionia"credit.TextTransparency=0.1 credit.BackgroundTransparency=1 credit.TextColor3=Color3.fromRGB(200,60,60)credit.TextSize=14 credit.Font=Enum.Font.Gotham local function createButton(text,yPos,color)local btn=Instance.new("TextButton")btn.Size=UDim2.new(1,-32,0,36)btn.Position=UDim2.new(0,16,0,yPos)btn.BackgroundColor3=color btn.TextColor3=Color3.fromRGB(220,220,220)btn.Text=text btn.TextSize=19 btn.Font=Enum.Font.Gotham btn.BorderSizePixel=0 btn.AutoButtonColor=true btn.Parent=mainFrame return btn end local aimbotBtn=createButton("Aimbot: OFF",65,Color3.fromRGB(45,45,55))local espBtn=createButton("ESP: OFF",110,Color3.fromRGB(45,45,55))local hideBtn=createButton("Hide UI",155,Color3.fromRGB(210,80,80))local hideFrame=Instance.new("Frame")hideFrame.Parent=screenGui hideFrame.Size=UDim2.new(0,110,0,35)hideFrame.Position=UDim2.new(0,15,0,15)hideFrame.BackgroundColor3=Color3.fromRGB(28,28,32)hideFrame.BorderSizePixel=0 hideFrame.Visible=false local showBtn=Instance.new("TextButton")showBtn.Parent=hideFrame showBtn.Size=UDim2.new(1,0,1,0)showBtn.BackgroundColor3=Color3.fromRGB(28,28,32)showBtn.TextColor3=Color3.fromRGB(220,220,220)showBtn.Text="Show Jisionia Hub"showBtn.TextSize=14 showBtn.Font=Enum.Font.Gotham showBtn.BorderSizePixel=0 local closeBtn=Instance.new("TextButton")closeBtn.Parent=mainFrame closeBtn.Text="X"closeBtn.Size=UDim2.new(0,35,0,35)closeBtn.Position=UDim2.new(1,-37,0,2)closeBtn.BackgroundColor3=Color3.fromRGB(255,60,60)closeBtn.TextColor3=Color3.fromRGB(255,255,255)closeBtn.Font=Enum.Font.GothamBold closeBtn.TextSize=20 closeBtn.BorderSizePixel=0 local tester=Instance.new("TextLabel")tester.Parent=mainFrame tester.Size=UDim2.new(1,0,0,20)tester.Position=UDim2.new(0,0,1,-24)tester.Text="First Tester: Teodorrosustefan8ani"tester.BackgroundTransparency=1 tester.TextColor3=Color3.fromRGB(40,230,40)tester.Font=Enum.Font.Gotham tester.TextSize=16 tester.TextXAlignment=Enum.TextXAlignment.Center local aimbotEnabled=false local espEnabled=false local rmb=false hideBtn.MouseButton1Click:Connect(function()mainFrame.Visible=false hideFrame.Visible=true end)showBtn.MouseButton1Click:Connect(function()mainFrame.Visible=true hideFrame.Visible=false end)local function getClosestPlayer()local closest=nil local closestDist=math.huge local screenCenter=Vector2.new(camera.ViewportSize.X/2,camera.ViewportSize.Y/2)for _,p in pairs(Players:GetPlayers())do if p~=player and p.Character and p.Character:FindFirstChild("Head")then local head=p.Character.Head local screenPos,onScreen=camera:WorldToScreenPoint(head.Position)if onScreen then local dist=(Vector2.new(screenPos.X,screenPos.Y)-screenCenter).Magnitude if dist<closestDist then closestDist=dist closest=head end end end end return closest end aimbotBtn.MouseButton1Click:Connect(function()aimbotEnabled=not aimbotEnabled aimbotBtn.Text="Aimbot: "..(aimbotEnabled and"ON"or"OFF")aimbotBtn.BackgroundColor3=aimbotEnabled and Color3.fromRGB(55,120,55)or Color3.fromRGB(45,45,55)end)UserInputService.InputBegan:Connect(function(input,gameProcessed)if input.UserInputType==Enum.UserInputType.MouseButton2 then rmb=true end end)UserInputService.InputEnded:Connect(function(input,gameProcessed)if input.UserInputType==Enum.UserInputType.MouseButton2 then rmb=false end end)table.insert(connections,RunService.RenderStepped:Connect(function()if aimbotEnabled and rmb then local target=getClosestPlayer()if target then local char=player.Character if char and char:FindFirstChild("HumanoidRootPart")then local hrp=char.HumanoidRootPart local targetPos=target.Position local cameraPos=camera.CFrame.Position local hRootPos=hrp.Position local newCameraFrame=CFrame.new(cameraPos,targetPos)camera.CFrame=newCameraFrame local newPlayerFrame=CFrame.new(hRootPos,targetPos)hrp.CFrame=newPlayerFrame end end end end))local function addESP(character)if character and not character:FindFirstChild("JisioniaHighlight")then local highlight=Instance.new("Highlight")highlight.Name="JisioniaHighlight"highlight.FillColor=Color3.fromRGB(255,0,0)highlight.OutlineColor=Color3.fromRGB(255,36,36)highlight.FillTransparency=0.6 highlight.OutlineTransparency=0.2 highlight.Adornee=character highlight.Parent=character end end local function removeESP(character)if character then local hl=character:FindFirstChild("JisioniaHighlight")if hl then hl:Destroy()end end end espBtn.MouseButton1Click:Connect(function()espEnabled=not espEnabled espBtn.Text="ESP: "..(espEnabled and"ON"or"OFF")espBtn.BackgroundColor3=espEnabled and Color3.fromRGB(55,120,55)or Color3.fromRGB(45,45,55)for _,p in pairs(Players:GetPlayers())do if p~=player and p.Character then if espEnabled then addESP(p.Character)else removeESP(p.Character)end end end end)Players.PlayerAdded:Connect(function(p)p.CharacterAdded:Connect(function(char)wait(1)if espEnabled then addESP(char)end end)end)closeBtn.MouseButton1Click:Connect(function()screenGui:Destroy()end)print("Loaded Jisionia Hub - SYNCED AIMBOT")
--Made by the username of Jisionia. Enjoy![ View More ]
Hello guys! This is keyless (Becuase i don't know how to put keys and i understand how bad it's to have a script with key) so i made a keyless one, undetected from rivals anti-cheat! I hope you will like it! Aimbot (Aims at the head btw)It loads faster than your wi-fi 100%Esp players Shows the subspace tripmines (when you enable esp)it's an gui (Jisionia Hub)Enjoy!! (Made by the username of @Jisionia)