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

Move GUI's around to random positions?

Asked by
haba_nero 386 Moderation Voter
5 years ago

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!

01local Plr = script.Parent.Parent.Parent
02local DB = false
03local Sound = script.Parent:FindFirstChild("Sound")
04local GUI = game.StarterGui.ScreenGui:FindFirstChild("TextLabel")
05script.Parent.Activated:Connect(function()
06    if DB == false then
07        DB = true
08 
09    if Plr then
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
14            Sound:Play()
15 
View all 30 lines...

1 answer

Log in to vote
1
Answered by
VitroxVox 884 Moderation Voter
5 years ago

Hello so i see your problem

Well i don't really know if this works but try it:

1Clone.Position = UDim2.new(0,math.random(0,900), 0,math.random(0,900))
0
uh Psudar 882 — 5y
Ad

Answer this question