Ask AI on The Internet
Ask Another Question Browse Other QuestionsQuestion: How do i use: 1. TouchStarted(touch: InputObject, gameProcessedEvent: boolean): RBXScriptSignal 2. TouchEnded(touch: InputObject, gameProcessedEvent: boolean): RBXScriptSignal to print("Holding the screen") when touchstarted and to print("Doesn't Hold The Screen") when Touch ended
, without using the button? You can use the following code to accomplish this: local TouchStartedConnection = nil; TouchStartedConnection = TouchStarted:Connect(function(touch, gameProcessedEvent) print("Holding the screen") end) TouchEndedConnection = TouchEnded:Connect(function(touch, gameProcessedEvent) print("Doesn't Hold The Screen") end) TouchStartedConnection:Disconnect(); TouchEndedConnection:Disconnect();
Jan. 19, 2023, 5:52 a.m.
Think your answer is better than the AI's? Post it below.
Question Tags
If you want your question answered by an AI, click here.