generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
   
ROBLOX Forum » Game Creation and Development » Scripters
Home Search
 

Why doesnt this work???

Previous Thread :: Next Thread 
walkman057 is not online. walkman057
Joined: 02 Dec 2014
Total Posts: 250
08 Jul 2015 11:59 AM
dL = script.Parent.DescLabel
button = script.Parent

if button:IsA("TextButton") then
button.MouseMoved:connect(function(x, y)
dL.Position = UDim2.new(0, x, 0, y)
dL.Text.Value = button.Description.Value
dL.Size = UDim2.new(0, 8 * button.Description.Value:len() + 40, 0, 20)
dL.Visible = true
end)
button.MouseLeave:connect(function()
dL.Visible = false
end)
end
Report Abuse
Scriptonym is not online. Scriptonym
Joined: 29 Jun 2015
Total Posts: 135
08 Jul 2015 12:12 PM
Whens setting the text of a text label, you do not need to put .Value

You need to change the line
dL.Text.Value = button.Description.Value
to
dL.Text = button.Description.Value

Fixed code:
dL = script.Parent.DescLabel
button = script.Parent

if button:IsA("TextButton") then
button.MouseMoved:connect(function(x, y)
dL.Position = UDim2.new(0, x, 0, y)
dL.Text = button.Description.Value
dL.Size = UDim2.new(0, 8 * button.Description.Value:len() + 40, 0, 20)
dL.Visible = true
end)
button.MouseLeave:connect(function()
dL.Visible = false
end)
end
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Scripters
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image