???
FEATURE:
- AXE NOCLIP
- FLY
- .
- NOTE:
- press b to enable ball noclip, v to enable axe noclip, left alt to enable fly
GAME LINK:
BALL AND AXE
SCRIPT:
-- game https://www.roblox.com/games/1242235469/ball-and-axe#!/about
local uis = game:GetService('UserInputService')
local fly = false
uis.InputBegan:connect(function(key)
local _playerBall = game.Workspace.playerModels:FindFirstChild(game.Players.LocalPlayer.Name)
if key.KeyCode == Enum.KeyCode.V and _playerBall then
_playerBall.axe.CanCollide = not _playerBall.axe.CanCollide
elseif key.KeyCode == Enum.KeyCode.B then
_playerBall.ball.CanCollide = not _playerBall.ball.CanCollide
elseif key.KeyCode == Enum.KeyCode.LeftAlt then
fly = not fly
if fly then
local _bodyVelocity = Instance.new('BodyVelocity', _playerBall.ball)
local v1 = Vector3.new(0,0,0)
spawn(function()
repeat wait()
if uis:IsKeyDown(Enum.KeyCode.W) then
v1 = Vector3.new(v1.X, 10,0)
end
if uis:IsKeyDown(Enum.KeyCode.S) then
v1 = Vector3.new(v1.X, -10,0)
end
if uis:IsKeyDown(Enum.KeyCode.D) then
v1 = Vector3.new(10, v1.Y,0)
end
if uis:IsKeyDown(Enum.KeyCode.A) then
v1 = Vector3.new(-10, v1.Y,0)
end
_bodyVelocity.Velocity = Vector3.new(0, 0, 0) + v1
until not fly
_bodyVelocity:Destroy()
end)
end
end
end)