How to add mobile controls for this football system

Hello, I need help for adding mobile controls to a football system (or soccer)
I already have the computer controls, I just wanna do the mobile controls.

I have 5 GUI buttons that are for mobile, since computer controls use keys. I will explain now each button described below:

Kick/Dribble: You need to keep holding the button to kick, (theres an increasing bar for power, so you can dribble and pass the ball also)

Back dribble: You need to click the button and the ball will go backwards the direction you are facing.

Flick up: You need to click the button, and you will do a flick up that will raise the ball up the opponent in a forward direction.

Stop ball: You need to click the button, and the ball will stop.

Run button: For pc, it uses shift, but I don’t know how to put it for mobile.
It can be clicked and it will show Run: ON, or OFF.

example of buttons:

image

Now, I will show the three scripts:
(All of them are local scripts)

PlrInput (This is where the pc controls are, I want to add the mobile controls here.

--Variables---------------------------
local player = game.Players.LocalPlayer
local char = player.Character
local hum = char:WaitForChild("Humanoid")
local uis = game:GetService("UserInputService")

local gui = game.StarterGui
local screengui2 = gui.ScreenGui2
local kickandDribble = screengui2.KickAndDribble
local backDribble = screengui2.BackDribble
local flickUp = screengui2.FlickUp
local StopBall = screengui2.StopBall

local remote = game.ReplicatedStorage.RemoteEvent

local animator = hum:WaitForChild("Animator")
local animation = script:WaitForChild("Animation")
local anim2 = script:WaitForChild("anim2")
local fient1 = script:WaitForChild("fient1")
local fient2 = script:WaitForChild("fient2")
local backkick = script:WaitForChild("backkick")
local upkick = script:WaitForChild("upkick")

--Core functions----------------------------

local function kickanim()
	local lanim

	local animnum = math.random(1, 2)
	if animnum == 1 then
		lanim = animator:LoadAnimation(animation)
	end

	if animnum == 2 then
		lanim = animator:LoadAnimation(anim2)
	end

	lanim:Play()
end

local function backanim()
	local lanim
	lanim = animator:LoadAnimation(backkick)
	lanim:Play()
end

local function upanim()
	local lanim
	lanim = animator:LoadAnimation(upkick)
	lanim:Play()
end

local function fient()
	local lanim  -- Объявляем переменную lanim здесь

	local animnum = math.random(1, 2)
	if animnum == 1 then
		lanim = animator:LoadAnimation(fient1)
	end

	if animnum == 2 then
		lanim = animator:LoadAnimation(fient2)
	end

	lanim:Play()
end

local function createhitbox(trans,power,jforce,animnum2)
	local power = power
	local jforce = jforce
	local hbox = Instance.new("Part")
	local hrp = char:WaitForChild("HumanoidRootPart")
	local cf = hrp.CFrame
	local lv = hrp.CFrame.LookVector
	local animnum2 = animnum2

	hbox.Size = Vector3.new(5, 3, 6)
	hbox.Parent = workspace.Debris
	hbox.Anchored = false
	hbox.CanCollide = false
	hbox.Color = Color3.new(1, 0, 0)
	hbox.Material = Enum.Material.Neon
	hbox.Transparency = trans
	hbox.CFrame = cf

	local weld = Instance.new("Weld")
	weld.Parent = hrp
	weld.Part1 = hbox
	weld.Part0 = hrp
	weld.C0 = CFrame.new(0, -2, 0)
	
	game.Debris:AddItem(hbox, 0.1)
	game.Debris:AddItem(weld, 0.1)
	
	
	hbox.Touched:Connect(function(hit)
		
		if hit.Name == "ball" then
			
			remote:FireServer(hit, hrp, cf, lv, power, jforce)
			
			if animnum2 == 1 then
				kickanim()
			end
			
			if animnum2 == 2 then
				backanim()
			end
			
			if animnum2 == 3 then
				fient()
			end
			
			if animnum2 == 4 then
				upanim()
			end
			
		else
			return
		end
		
	end)
end

------------------------------

local power2 = 0
local db = true
local jforce2 = 0

--CONTROLS FOR PC BELOW:

-------KICK or DRIBBLE------------------------------------
local cooldownTime = 0.3
local lastTimeUsed = 0

uis.InputBegan:Connect(function(input, gpe)
	if gpe then return end
	if input.UserInputType == Enum.UserInputType.MouseButton1 then
		local currentTime = tick()

		if currentTime - lastTimeUsed >= cooldownTime then
			db = true
			power2 = 40
			jforce2 = 10
			while db == true do
				wait(0.05)
				power2 += 2
				jforce2 += 1.5
				if power2 > 118 then
					break
				end
			end
			lastTimeUsed = currentTime
		end
	end
end)

uis.InputEnded:Connect(function(input, gpe)
	if gpe then return end
	if input.UserInputType == Enum.UserInputType.MouseButton1 and db then
		db = false
		createhitbox(1, power2, jforce2, 1)
		lastTimeUsed = tick()
	end
end)


-----Back Kick or Back Dribble-----------------------------------------------------

local cd2 = false

uis.InputBegan:Connect(function(input, gpe)
	if gpe then return end
	if input.UserInputType == Enum.UserInputType.MouseButton2 and cd2 == false then
		power2 = -40
		jforce2 = 10
	end
end)

uis.InputEnded:Connect(function(input, gpe)
	if gpe then return end
	if input.UserInputType == Enum.UserInputType.MouseButton2 and cd2 == false then
		createhitbox(1, power2, jforce2, 2)
		cd2 = true
		task.wait(cooldownTime)
		cd2 = false
	end
end)



-----Up Kick or Flick Up--------------------------------------------


uis.InputBegan:Connect(function(input, gpe)
	if gpe then return end
	if input.KeyCode == Enum.KeyCode.R and cd2 == false then
		power2 = 30
		jforce2 = 50
	end
end)

uis.InputEnded:Connect(function(input, gpe)
	if gpe then return end
	if input.KeyCode == Enum.KeyCode.R and cd2 == false then
		createhitbox(1,power2,jforce2,4)
		cd2 = true
		task.wait(cooldownTime)
		cd2 = false
	end
end)

--Stop Ball----------------------------------------------
uis.InputBegan:Connect(function(input, gpe)
	if gpe then return end
	if input.KeyCode == Enum.KeyCode.E and cd2 == false  then
		power2 = 0
		jforce2 = 25
	end
end)

uis.InputEnded:Connect(function(input, gpe)
	if gpe then return end
	if input.KeyCode == Enum.KeyCode.E and cd2 == false then
		createhitbox(1,power2,jforce2,3)
		cd2 = true
		task.wait(cooldownTime)
		cd2 = false
	end
end)
--------------------------------

UI bar (Kick/Dribble power bar)

-- variables--------------
local gui = game.ReplicatedStorage.RepThing.BillboardGui
local gui2 = game.ReplicatedStorage.RepThing.BillboardGui2

local guiclone = gui:Clone()
local guiclone2 = gui2:Clone()

local player = game.Players.LocalPlayer
local char = player.Character
local hrp = char:WaitForChild("HumanoidRootPart")

--Instance-----------------------
local part = Instance.new("Part")
part.Anchored = false
part.Transparency = 1
part.CanCollide = false
part.Parent = hrp
part.Size = Vector3.new(1, 1, 1)
part.CFrame = hrp.CFrame

local part2 = Instance.new("Part")
part2.Name = "Part2"
part2.Anchored = false
part2.Transparency = 1
part2.CanCollide = false
part2.Parent = hrp
part2.Size = Vector3.new(1, 1, 1)
part2.CFrame = hrp.CFrame

local weld = Instance.new("Weld")
weld.Parent = hrp
weld.Part1 = hrp
weld.Part0 = part
weld.C0 = CFrame.new(-3, 0, 0)

local weld2 = Instance.new("Weld")
weld2.Parent = hrp
weld2.Part1 = hrp
weld2.Part0 = part2
weld2.C0 = CFrame.new(-3.1, 0, 0)

guiclone.Parent = part
guiclone.Enabled = false

guiclone2.Parent = part2
guiclone2.Enabled = false
-----------------------------

local line = guiclone.back

local uis = game:GetService("UserInputService")

local db = false
local power = 0
local maxPower = 40


local function updateLine()
	line.Size = UDim2.new(1, 0, 1 - power / maxPower, 0)
end


uis.InputBegan:Connect(function(input, gpe)
	if gpe then return end
	if input.UserInputType == Enum.UserInputType.MouseButton1 then
		guiclone.Enabled = true
		db = true
		while db do
			power = math.min(power + 2, maxPower)
			updateLine()
			wait(0.05)
		end
		
		
	end
end)

uis.InputEnded:Connect(function(input, gpe)
	if gpe then return end
	if input.UserInputType == Enum.UserInputType.MouseButton1 then
		db = false
		power = 0
		updateLine()
		guiclone.Enabled = false
	end
end)

Sprint/Run script:

-- made by 4836s (wynn) -- (Its from a tutorial video, i still understand the script a little)

-- preload
local runningAnimation = Instance.new('Animation')
local jumpingAnimation = Instance.new('Animation')
local pressed = false

-- settings
local players = game.Players
local localplayer = players.LocalPlayer
local plrui = localplayer.PlayerGui.ScreenGui2.RunningSPEED -- PlayerGui, runningspeed button


local defaultSpeed = 16 -- Your default walking speed
local sprintSpeed = 35 -- Your custom running speed
local FOV = 80 -- Change to your default FOV
local walkingFOV = {FieldOfView = FOV} -- The FOV variable (line above) will be the walkingFOV. (default FOV)
local sprintFOV = {FieldOfView = FOV + 10} -- Increase the FOV by how much (Default is 50 (Which will be 120 FOV))
local tweenTime = 0.7 -- Change this to the time that you want the tween to take to finish
local keyboardButton = Enum.KeyCode.LeftShift -- To custo mize, go to create.roblox.com/docs/reference/engine/enums/KeyCode and find the key you want.
local controllerButton = Enum.KeyCode.ButtonR1 -- To customize, go to create.roblox.com/docs/reference/engine/enums/KeyCode and find the key you want.
local tweenEasingStyle = Enum.EasingStyle.Exponential -- To customize, go to create.roblox.com/docs/reference/engine/enums/EasingStyle and find the easing style you want.
local tweenEasingDirection = Enum.EasingDirection.Out -- Easing Directions: In, Out, InOut
runningAnimation.AnimationId = 'rbxassetid://180426354' -- Set your running Animation ID
jumpingAnimation.AnimationId = 'rbxassetid://125750702' -- Set your running Animation ID
local keepJumpingAnimation = false -- (false by default) Turn this off if you dont want a jumping animation.

-- load Services & more
local player = script.Parent
local player2 = game:GetService("Players").LocalPlayer
local humanoid = player:WaitForChild("Humanoid",5)
local camera = game.workspace.CurrentCamera
local animator = humanoid:WaitForChild("Animator") -- Don't want animations? Delete line 6, 29 to 33, and line 58 and 61.
local UserInputService = game:GetService("UserInputService")
local TweenService = game:GetService("TweenService")
local playRunning = humanoid:LoadAnimation(runningAnimation)
local playJumping = humanoid:LoadAnimation(jumpingAnimation)
local character = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait() -- A players Character
local Humanoid2 = character.Humanoid

-- Create FOV tweens
local Info = TweenInfo.new(tweenTime, tweenEasingStyle, tweenEasingDirection)
local runningT = TweenService:Create(camera, Info, sprintFOV)
local walkingT = TweenService:Create(camera, Info, walkingFOV)

-- Check for a key being held, Change FOV and Speed 
UserInputService.InputBegan:Connect(function(input,gameProcessedEvent)
	if input.KeyCode == keyboardButton or input.KeyCode == controllerButton and gameProcessedEvent == false then
		pressed = true
		humanoid.WalkSpeed = sprintSpeed	
	end
end)

UserInputService.InputEnded:Connect(function(input,gameProcessedEvent)
	if input.KeyCode == keyboardButton or input.KeyCode == controllerButton and gameProcessedEvent == false then
		pressed = false
		humanoid.WalkSpeed = defaultSpeed
		walkingT:Play()
	end
end)

-- Checks if your speed is over than the defaultSpeed by 1, Which it assumes that you're running, and plays the animation.
humanoid.Running:Connect(function(Speed)
	if Speed > 21 then
		if not playRunning.IsPlaying then
			runningT:Play()
			playRunning:Play()
		end
	else
		playRunning:Stop()
	end
end)

-- Checks if you jumped, and then stops the running animation and plays the jumping animation (If its turned on).
humanoid.Jumping:Connect(function()
	if playRunning.IsPlaying then
		playRunning:Stop()
		if keepJumpingAnimation == true then
			playJumping:Play()
		end
	end
end)

Still waiting for some help… also, the power bar is a billboard gui and is located in replicatedStorage

I fixed almost everything, the problem was i was using UserInputService.InputBegan/Ended and not GuiExample.InputBegan/Ended

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.