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 » Scripting Helpers
Home Search
 

Re: [Help Me] - Tree, Gui, Tool!? Losing my Patience.

Previous Thread :: Next Thread 
DJSasuke1963 is not online. DJSasuke1963
Joined: 30 Nov 2012
Total Posts: 1136
16 Jan 2014 08:15 PM
I have created a Pickaxe containing this script:

function onActivation()
function Hit(hit)
if hit.Name == "HitDetect" then
hit.Health.Value = Hit.Health.Value-1
end
end
end

script.Parent.Activated:connect(onActivation)
script.Parent.Hit.Touched:connect(Hit)
------------------------------------------------------------ Does not work ^^

I have also created a tree containing this script
deb = false
function TreeMains(hit)
deb = true
if hit.Name == "Hit" then
char = hit.Parent.Parent
plyr = game.Players:GetPlayerFromCharacter(char)
if plyr ~= nil then
TreeHealth = Instance.new("ScreenGui")
HealthText = Instance.new("TextLabel")
HealthText.Size = UDim2.new(0,150,0,50)
HealthText.Font = "Arial"
HealthText.FontSize = "Size24"
HealthText.Position = UDim2.new(0,0.50,0,0)
HealthText.Text = "Tree Health:" ..script.Parent.Health.Value.. ""
HealthText.Parent = TreeHealth
TreeHealth.Name = "TreeHealthGui"
TreeHealth.Parent = plyr.PlayerGui
if script.Parent.Touched == false then
plyr.PlayerGui.TreeHealthGui:Destroy()
end
deb = false
end
end
end
script.Parent.Touched:connect(TreeMains)
--------------------------------------------------------------------

Please help..

Report Abuse
PiggyJingles is not online. PiggyJingles
Joined: 13 Jan 2009
Total Posts: 2472
16 Jan 2014 08:17 PM
You aren't defining Hit before it calls.
Report Abuse
DJSasuke1963 is not online. DJSasuke1963
Joined: 30 Nov 2012
Total Posts: 1136
16 Jan 2014 08:50 PM
What do you mean?
- Thanks for replying btw
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Scripting Helpers
   
 
   
  • 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