Hello everyone,
So i have a tool when i use it i get like let's say 10 Force if this happens i have a gui who appear with a +10 now the problem is everything is working fine i have in my tool 10 Gui`s with different locations where the gui appear
1 | script.Parent.TextLabel:TweenPosition(UDim 2. new( 0.325 , 0 , 0.605 , 0 ), "Out" , "Quint" , 1 , true ) |
2 | wait( 3 ) |
3 | script.Parent.Parent.Hit:Destroy() |
This is working fine so far but it show`s me only 1 gui i would like that it show my a gui every time i click/use my tool (i have a cooldown of 0.7 seconds between each clicks)
Here is the code from tool i use to copy the gui`s
1 | script.Parent.Animation:GetChildren() [ math.random( 1 , #script.Parent.Animation:GetChildren()) ] :clone().Parent = game.Players.LocalPlayer.PlayerGui |
2 | game.Players.LocalPlayer.PlayerGui.Hit.TextLabel.Text = " +10" |
Would be happy if someone have an idee how i could resolve this or maybe make it bether :)
Try using UDIM2 to put the gui and also try cloning it as shown here: Put the GUI with the textlabel in Lighting Put this script inside the tool:
01 | local Tool = script.Parent |
02 | local GUI = game.Lighting:FindFirstChild( "ScreenGui" ) --Your Gui with text label |
03 | local Text = GUI:FindFirstChild( "TextLabel" ) |
04 | Text.Text = "+10" |
05 | Tool.Activated:Connect( function () |
06 | local Clone = GUI:Clone() |
07 | Clone.Parent = game.Players:FindFirstChild(Tool.Parent.Name):FindFirstChild( "PlayerGui" ) |
08 | Clone.Position = Udim 2. new(math.random( 0 , 0.80 ), 0 ,math.random( 0 , 0.80 )) |
09 | print ( "Success!" ) |
10 | wait( 2 ) |
11 | Clone:Destroy() |
12 | end |
It might not work, but it should give you a head start!
It didn't work i got it to work but it stiill show`s only 1
Tryed to change the folder Name too but doesn't change
Full Scriipt
01 | local Tool = script.Parent |
02 | local GUI = game.Lighting.Animation:FindFirstChild( "Hit" ) |
03 | math.randomseed(tick()) |
04 | local rng = math.random() |
05 | local newfolder = "Hit" ..rng |
06 | local Text = GUI:FindFirstChild( "TextLabel" ) |
07 | Text.Text = "+10" |
08 |
09 | Tool.Activated:Connect( function () |
10 |
11 | wait( 0.7 ) |
12 | local Clone = GUI:Clone() |
13 | Clone.Parent = game.Players:FindFirstChild(Tool.Parent.Name):FindFirstChild( "PlayerGui" ) |
14 | game.Players:FindFirstChild(Tool.Parent.Name):FindFirstChild( "PlayerGui" ).Hit.Name = newfolder |
15 | Clone.Parent:FindFirstChild(newfolder).TextLabel:TweenPosition(UDim 2. new( 0.625 , 0 , 0.605 , 0 ), "Out" , "Quint" , 1 , true ) |
16 | print ( "Success!" ) |
17 | wait( 3 ) |
18 | Clone.Parent:FindFirstChild(newfolder):Destroy() |
19 | end ) |
EDIT
I wan't to make something like this
https://www.youtube.com/watch?v=nPcuVxWzsvo
My looks like this
https://www.youtube.com/watch?v=cUYYMKGzqPc&
Like you see just 1 pops
Very simple fix, your local newfolder = "Hit" ..rng
is outside of the Tool.Activated
function.
Just move it to the top of the function.
Mark this as the answer if it worked!