When I touch a part it should bring up and down a text label but it doesn't go down why is that?
01 | local hitbox = workspace.Shop.HitBox_Tool_Shop |
02 | local player = game.Players.LocalPlayer |
03 | local ui = player.PlayerGui:WaitForChild( "E" ).TextLabel |
04 | ------------------------------------------------- |
05 |
06 | hitbox.Touched:Connect( function () |
07 | ui:TweenPosition(UDim 2. new( 0.446 , 0 , 0.772 , 0 ), "Out" , "Quad" , 1 ) |
08 | wait( 0.1 ) |
09 | end ) |
10 |
11 | ---------------------------------------------------- |
12 |
13 | local hitbox = workspace.Shop.HitBox_Tool_Shop |
14 | local userinput = game:GetService( "UserInputService" ) |
15 | local player = game.Players.LocalPlayer |
TouchedEnded is incredibly unreliable and inconsistent. I'd recommend using region3 or if this is in a localscript you can have the gui show up when the localplayers character is within a certain distance to the hitbox like so:
01 | local player = game.Players.LocalPlayer |
02 | local char = player.Character |
03 | local replicatedStorage = game:GetService( "ReplicatedStorage" ) |
04 | local trigger = workspace.HitBox |
05 |
06 | local open = false |
07 |
08 | game:GetService( "RunService" ).RenderStepped:Connect( function () |
09 | local distance = (char:WaitForChild( "HumanoidRootPart" ).Position - trigger.Position).Magnitude |
10 | if distance < = 7 then |
11 | if not open then |
12 | open = true |
13 | -- in range |
14 | end |
15 | else |