Move GUI's around to random positions?
I tried this but the coords end up wrong. I am trying to make it show a text label at a random place every time a player clicks it. It just ends up nowhere!. Pls, help!
01 | local Plr = script.Parent.Parent.Parent |
03 | local Sound = script.Parent:FindFirstChild( "Sound" ) |
04 | local GUI = game.StarterGui.ScreenGui:FindFirstChild( "TextLabel" ) |
05 | script.Parent.Activated:Connect( function () |
10 | local Multi = Plr.HiddenStats:FindFirstChild( "Multiplier" ) |
11 | local Chill = Plr.leaderstats:FindFirstChild( "Chill" ) |
12 | if Multi and Chill then |
13 | Chill.Value = Chill.Value + 1 * Multi.Value |
16 | local Clone = GUI:Clone() |
17 | Clone.Parent = Plr.PlayerGui:FindFirstChild( "ScreenGui" ) |
18 | Clone.Position = UDim 2. new(math.random( 0 , 1 ), 0 ,math.random( 0 , 1 ), 0 ) |
20 | Clone.Text = "+" ..Multi.Value |
26 | local Delay = Plr.HiddenStats:FindFirstChild( "Delay" ) |