Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why is my textlabel going up but not down i don't get it?? (Ansvered)

Asked by 5 years ago
Edited 5 years ago

When I touch a part it should bring up and down a text label but it doesn't go down why is that?

01local hitbox = workspace.Shop.HitBox_Tool_Shop
02local player = game.Players.LocalPlayer
03local ui = player.PlayerGui:WaitForChild("E").TextLabel
04-------------------------------------------------
05 
06hitbox.Touched:Connect(function()
07            ui:TweenPosition(UDim2.new(0.446, 0,0.772, 0),"Out","Quad",1)
08            wait(0.1)
09    end)
10 
11----------------------------------------------------
12 
13local hitbox = workspace.Shop.HitBox_Tool_Shop
14local userinput = game:GetService("UserInputService")
15local player = game.Players.LocalPlayer
View all 21 lines...

1 answer

Log in to vote
2
Answered by
Arkrei 389 Moderation Voter
5 years ago

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:

01local player = game.Players.LocalPlayer
02local char = player.Character
03local replicatedStorage = game:GetService("ReplicatedStorage")
04local trigger = workspace.HitBox
05 
06local open = false
07 
08game:GetService("RunService").RenderStepped:Connect(function()
09local distance = (char:WaitForChild("HumanoidRootPart").Position - trigger.Position).Magnitude
10if distance <= 7 then
11    if not open then
12        open = true
13        -- in range
14    end
15else
View all 21 lines...
Ad

Answer this question