`-- Gui to Lua
-- Version: 3.2
-- Instances:
local ScreenGui = Instance.new("ScreenGui")
local Frame = Instance.new("Frame")
local ImageButton = Instance.new("ImageButton")
local TextLabel = Instance.new("TextLabel")
local speed = Instance.new("TextButton")
local graphics = Instance.new("TextButton")
local fps = Instance.new("TextButton")
local rejoin = Instance.new("TextButton")
local tp = Instance.new("TextButton")
local fly = Instance.new("TextButton")
local gravity = Instance.new("TextButton")
local auto = Instance.new("TextButton")
local fov = Instance.new("TextButton")
local close = Instance.new("TextButton")
local open = Instance.new("TextButton")
--Properties:
ScreenGui.Parent = game.CoreGui
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
Frame.Parent = ScreenGui
Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Frame.BackgroundTransparency = 1.000
Frame.Position = UDim2.new(0.364933759, 0, 0.280543, 0)
Frame.Size = UDim2.new(0, 292, 0, 206)
ImageButton.Parent = Frame
ImageButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ImageButton.BackgroundTransparency = 1.000
ImageButton.Position = UDim2.new(0.369862914, 0, 0.16504854, 0)
ImageButton.Size = UDim2.new(0, 364, 0, 276)
ImageButton.Image = "http://www.roblox.com/asset/?id=4967681819"
ImageButton.Draggable = true
TextLabel.Parent = ImageButton
TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.BackgroundTransparency = 1.000
TextLabel.Position = UDim2.new(0.0407523513, 0, 0.641025662, 0)
TextLabel.Size = UDim2.new(0, 290, 0, 17)
TextLabel.Font = Enum.Font.GothamBlack
TextLabel.Text = "MADE BY TURNINGGLOBE - GO SUB RN BOAAA"
TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
TextLabel.TextScaled = true
TextLabel.TextSize = 14.000
TextLabel.TextWrapped = true
speed.Name = "speed"
speed.Parent = ImageButton
speed.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
speed.BackgroundTransparency = 0.500
speed.BorderSizePixel = 0
speed.Position = UDim2.new(0.0407523513, 0, 0.051282052, 0)
speed.Size = UDim2.new(0, 103, 0, 26)
speed.Font = Enum.Font.GothamBlack
speed.Text = "SPEED[x]"
speed.TextColor3 = Color3.fromRGB(0, 0, 0)
speed.TextScaled = true
speed.TextSize = 14.000
speed.TextWrapped = true
speed.MouseButton1Down:connect(function()
local walkspeedplayer = game:GetService("Players").LocalPlayer
local walkspeedmouse = walkspeedplayer:GetMouse()
local walkspeedenabled = false
function x_walkspeed(key)
if (key == "x") then
if walkspeedenabled == false then
_G.WS = 200;
local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
Humanoid.WalkSpeed = _G.WS;
end)
Humanoid.WalkSpeed = _G.WS;
walkspeedenabled = true
elseif walkspeedenabled == true then
_G.WS = 20;
local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
Humanoid.WalkSpeed = _G.WS;
end)
Humanoid.WalkSpeed = _G.WS;
walkspeedenabled = false
end
end
end
walkspeedmouse.KeyDown:connect(x_walkspeed)
end)
graphics.Name = "graphics"
graphics.Parent = ImageButton
graphics.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
graphics.BackgroundTransparency = 0.500
graphics.BorderSizePixel = 0
graphics.Position = UDim2.new(0.358107418, 0, 0.051282052, 0)
graphics.Size = UDim2.new(0, 103, 0, 26)
graphics.Font = Enum.Font.GothamBlack
graphics.Text = "GRAPHICS"
graphics.TextColor3 = Color3.fromRGB(0, 0, 0)
graphics.TextScaled = true
graphics.TextSize = 14.000
graphics.TextWrapped = true
graphics.MouseButton1Down:connect(function()
-- Roblox Graphics Enhancher
local light = game.Lighting
for i, v in pairs(light:GetChildren()) do
v😃estroy()
end
end)
fps.Name = "fps"
fps.Parent = ImageButton
fps.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
fps.BackgroundTransparency = 0.500
fps.BorderSizePixel = 0
fps.Position = UDim2.new(0.683609486, 0, 0.051282052, 0)
fps.Size = UDim2.new(0, 103, 0, 26)
fps.Font = Enum.Font.GothamBlack
fps.Text = "MORE FPS"
fps.TextColor3 = Color3.fromRGB(0, 0, 0)
fps.TextScaled = true
fps.TextSize = 14.000
fps.TextWrapped = true
fps.MouseButton1Click:Connect(function()
for _,v in pairs(workspace:GetDescendants()) do
if v.ClassName == "Part"
or v.ClassName == "SpawnLocation"
or v.ClassName == "WedgePart"
or v.ClassName == "Terrain"
or v.ClassName == "MeshPart" then
v.Material = "Plastic"
end
end
for _,v in pairs(workspace:GetDescendants()) do
if v.ClassName == "Decal"
or v.ClassName == "Texture" then
v😃estroy()
end
end
end)
rejoin.Name = "rejoin"
rejoin.Parent = ImageButton
rejoin.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
rejoin.BackgroundTransparency = 0.500
rejoin.BorderSizePixel = 0
rejoin.Position = UDim2.new(0.0407523513, 0, 0.19620958, 0)
rejoin.Size = UDim2.new(0, 103, 0, 26)
rejoin.Font = Enum.Font.GothamBlack
rejoin.Text = "REJOIN"
rejoin.TextColor3 = Color3.fromRGB(0, 0, 0)
rejoin.TextScaled = true
rejoin.TextSize = 14.000
rejoin.TextWrapped = true
rejoin.MouseButton1Click:Connect(function()
game:GetService("TeleportService"):Teleport(game.PlaceId, game.Players.LocalPlayer)
end)
tp.Name = "tp"
tp.Parent = ImageButton
tp.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
tp.BackgroundTransparency = 0.500
tp.BorderSizePixel = 0
tp.Position = UDim2.new(0.356686413, 0, 0.19620958, 0)
tp.Size = UDim2.new(0, 103, 0, 26)
tp.Font = Enum.Font.GothamBlack
tp.Text = "CLICKTP[N]"
tp.TextColor3 = Color3.fromRGB(0, 0, 0)
tp.TextScaled = true
tp.TextSize = 14.000
tp.TextWrapped = true
tp.MouseButton1Click:Connect(function()
toggle = true
togglekey = "n" --Key that you will use to toggle the on and off
killkey = "k" --Key that you will use to kill a player
function Hint(txt)
local b = Instance.new('Hint', workspace)
b.Text = txt
wait(2)
b😃estroy()
end
Local = game:GetService('Players').LocalPlayer
Mouse = Local:GetMouse()
Mouse.Button1Down:connect(function()
pcall(function()
if toggle then
Local.Character.HumanoidRootPart.CFrame = Local:GetMouse().Hit
end
end)
end)
Mouse.KeyDown:connect(function(key)
if key == togglekey then
if toggle then
toggle = false
Hint('Turned Off!')
print ('Turned Off!')
else
toggle = true
Hint('Turned On!')
print ('Turned On!')
end
elseif key == killkey then
if toggle then
pcall(function()
Mouse.Target.Parent:FindFirstChild('Humanoid').Health = 0
Hint('Killed ' .. Mouse.Target.Parent.Name)
end)
end
end
end)
end)
fly.Name = "fly"
fly.Parent = ImageButton
fly.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
fly.BackgroundTransparency = 0.500
fly.BorderSizePixel = 0
fly.Position = UDim2.new(0.683609486, 0, 0.19620958, 0)
fly.Size = UDim2.new(0, 103, 0, 26)
fly.Font = Enum.Font.GothamBlack
fly.Text = "FLY[Q]"
fly.TextColor3 = Color3.fromRGB(0, 0, 0)
fly.TextScaled = true
fly.TextSize = 14.000
fly.TextWrapped = true
fly.MouseButton1Down:connect(function()
local Enabled = false
local Camera = game.Workspace.CurrentCamera
local Player = game:GetService("Players").LocalPlayer
local Input = game:GetService("UserInputService")
local Forward = false
local Back = false
local Left = false
local Right = false
local Up = false
local Down = false
local function SetPlayer()
for i,v in pairs(Player.Character:GetChildren()) do
pcall(function()
v.Anchored = not v.Anchored
end)
end
end
Input.InputBegan:Connect(function(Key,IsChat)
if IsChat then return end
if Key.KeyCode == Enum.KeyCode.Q then
Enabled = not Enabled
SetPlayer()
end
if Key.KeyCode == Enum.KeyCode.W then
Forward = true
end
if Key.KeyCode == Enum.KeyCode.S then
Back = true
end
if Key.KeyCode == Enum.KeyCode.A then
Left = true
end
if Key.KeyCode == Enum.KeyCode.D then
Right = true
end
if Key.KeyCode == Enum.KeyCode.Space then
Up = true
end
if Key.KeyCode == Enum.KeyCode.LeftControl then
Down = true
end
end)
Input.InputEnded:Connect(function(Key,IsChat)
if IsChat then return end
if Key.KeyCode == Enum.KeyCode.W then
Forward = false
end
if Key.KeyCode == Enum.KeyCode.S then
Back = false
end
if Key.KeyCode == Enum.KeyCode.A then
Left = false
end
if Key.KeyCode == Enum.KeyCode.D then
Right = false
end
if Key.KeyCode == Enum.KeyCode.Space then
Up = false
end
if Key.KeyCode == Enum.KeyCode.LeftControl then
Down = false
end
end)
while game:GetService("RunService").RenderStepped:Wait() do
if Enabled then
pcall(function()
if Forward then
Player.Character:TranslateBy(Camera.CFrame.lookVector*2)
end
if Back then
Player.Character:TranslateBy(-Camera.CFrame.lookVector*2)
end
if Left then
Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
end
if Right then
Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
end
if Up then
Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
end
if Down then
Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
end
end)
end
end
end)
gravity.Name = "gravity"
gravity.Parent = ImageButton
gravity.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
gravity.BackgroundTransparency = 0.500
gravity.BorderSizePixel = 0
gravity.Position = UDim2.new(0.0407523513, 0, 0.330267549, 0)
gravity.Size = UDim2.new(0, 103, 0, 26)
gravity.Font = Enum.Font.GothamBlack
gravity.Text = "GRAVITY"
gravity.TextColor3 = Color3.fromRGB(0, 0, 0)
gravity.TextScaled = true
gravity.TextSize = 14.000
gravity.TextWrapped = true
gravity.MouseButton1Down:connect(function()
if Gravity == true then
Gravity = false
game.workspace.Gravity = 196.2
else
Gravity = true
game.workspace.Gravity = 45
end
end)
auto.Name = "auto"
auto.Parent = ImageButton
auto.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
auto.BackgroundTransparency = 0.500
auto.BorderSizePixel = 0
auto.Position = UDim2.new(0.356686413, 0, 0.330267549, 0)
auto.Size = UDim2.new(0, 103, 0, 26)
auto.Font = Enum.Font.GothamBlack
auto.Text = "AUTO-FARM"
auto.TextColor3 = Color3.fromRGB(0, 0, 0)
auto.TextScaled = true
auto.TextSize = 14.000
auto.TextWrapped = true
auto.MouseButton1Down:connect(function()
loadstring(game:HttpGet("https://pastebin.com/raw/Z3iAXASr", true))()
end)
fov.Name = "fov"
fov.Parent = ImageButton
fov.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
fov.BackgroundTransparency = 0.500
fov.BorderSizePixel = 0
fov.Position = UDim2.new(0.683609486, 0, 0.330267549, 0)
fov.Size = UDim2.new(0, 103, 0, 26)
fov.Font = Enum.Font.GothamBlack
fov.Text = "FOV"
fov.TextColor3 = Color3.fromRGB(0, 0, 0)
fov.TextScaled = true
fov.TextSize = 14.000
fov.TextWrapped = true
fov.MouseButton1Click:Connect(function()
local amount = 150000000
game:GetService'Workspace'.Camera.FieldOfView = 150
end)
close.Name = "close"
close.Parent = ImageButton
close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
close.BackgroundTransparency = 0.500
close.BorderSizePixel = 0
close.Position = UDim2.new(0.356686413, 0, 0.51867336, 0)
close.Size = UDim2.new(0, 103, 0, 26)
close.Font = Enum.Font.GothamBlack
close.Text = "CLOSE"
close.TextColor3 = Color3.fromRGB(0, 0, 0)
close.TextScaled = true
close.TextSize = 14.000
close.TextWrapped = true
close.MouseButton1Down:connect(function()
ImageButton.Visible = false
open.Visible = true
end)
open.Name = "open"
open.Parent = Frame
open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
open.BackgroundTransparency = 0.500
open.BorderSizePixel = 0
open.Position = UDim2.new(0.417464674, 0, -0.851630569, 0)
open.Size = UDim2.new(0, 103, 0, 26)
open.Font = Enum.Font.GothamBlack
open.Text = "OPEN"
open.TextColor3 = Color3.fromRGB(0, 0, 0)
open.TextScaled = true
open.TextSize = 14.000
open.TextWrapped = true
open.MouseButton1Down:connect(function()
ImageButton.Visible = true
open.Visible = false
end)`